Skip to content

Commit 2a36cda

Browse files
committed
gh-145961: Fix typos in configure.ac and pyconfig.h.in
- configure.ac line 6415: "useable" -> "usable" (two occurrences) - configure.ac line 6505: "defauly" -> "default" - pyconfig.h.in line 1602: "useable" -> "usable" (two occurrences) All changes are in comments only.
1 parent 1dfe99a commit 2a36cda

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6412,7 +6412,7 @@ if test "$ac_cv_sizeof_wchar_t" -ge 2 \
64126412
-a "$ac_cv_wchar_t_signed" = "no"
64136413
then
64146414
AC_DEFINE([HAVE_USABLE_WCHAR_T], [1],
6415-
[Define if you have a useable wchar_t type defined in wchar.h; useable
6415+
[Define if you have a usable wchar_t type defined in wchar.h; usable
64166416
means wchar_t must be an unsigned type with at least 16 bits. (see
64176417
Include/unicodeobject.h).])
64186418
AC_MSG_RESULT([yes])
@@ -6502,7 +6502,7 @@ fi
65026502
# Check for --with-platlibdir
65036503
# /usr/$PLATLIBDIR/python$(VERSION)$(ABI_THREAD)
65046504
AC_SUBST([PLATLIBDIR])
6505-
PLATLIBDIR="lib" # XXX: We should probably calculate the defauly from libdir, if defined.
6505+
PLATLIBDIR="lib" # XXX: We should probably calculate the default from libdir, if defined.
65066506
AC_MSG_CHECKING([for --with-platlibdir])
65076507
AC_ARG_WITH(
65086508
[platlibdir],

pyconfig.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@
15991599
/* Define to 1 if you have the 'unshare' function. */
16001600
#undef HAVE_UNSHARE
16011601

1602-
/* Define if you have a useable wchar_t type defined in wchar.h; useable means
1602+
/* Define if you have a usable wchar_t type defined in wchar.h; usable means
16031603
wchar_t must be an unsigned type with at least 16 bits. (see
16041604
Include/unicodeobject.h). */
16051605
#undef HAVE_USABLE_WCHAR_T

0 commit comments

Comments
 (0)