]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
typos
authorStepan Kasal <kasal@ucw.cz>
Mon, 20 Mar 2006 14:46:12 +0000 (14:46 +0000)
committerStepan Kasal <kasal@ucw.cz>
Mon, 20 Mar 2006 14:46:12 +0000 (14:46 +0000)
ChangeLog
doc/autoconf.texi
lib/autoconf/lang.m4

index 67b3e1c80942922a4232c527afbe51254a6eef75..6b9d303512650504a11ed6f282ec0e8bc66b7bc4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-03-20  Stepan Kasal  <kasal@ucw.cz>
+
+       * doc/autoconf.texi (Default Includes): Fix typo
+         s/AC_HEADERS_STDC/AC_HEADER_STDC/
+       (Limitations of Usual Tools): s/unwriteable/unwritable/
+       * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
+         Fix typos in the comments.
+
 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
 
        * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
index 127bf7963b050104db84d5d0a5916dfd3abe42ac..4f5306d00cb64d5f318b84c9203b24d341eb44d7 100644 (file)
@@ -3361,7 +3361,7 @@ Expand to @var{include-directives} if defined, otherwise to:
 
 If the default includes are used, then check for the presence of these
 headers and their compatibility, i.e., you don't need to run
-@code{AC_HEADERS_STDC}, nor check for @file{stdlib.h} etc.
+@code{AC_HEADER_STDC}, nor check for @file{stdlib.h} etc.
 
 These headers are checked for in the same order as they are included.
 For instance, on some systems @file{string.h} and @file{strings.h} both
@@ -12150,7 +12150,7 @@ compiler name.
 @prindex @command{chmod}
 Avoid usages like @samp{chmod -w file}; use @samp{chmod a-w file}
 instead, for two reasons.  First, plain @samp{-w} does not necessarily
-make the file unwriteable, since it does not affect mode bits that
+make the file unwritable, since it does not affect mode bits that
 correspond to bits in the file mode creation mask.  Second,
 Posix says that the @samp{-w} might be interpreted as an
 implementation-specific option, not as a mode; Posix suggests
index 76110f1c05fe2ce6b30da9a6f04a456720f6234b..6d38b67a861fe4d34774b7dc4c5a491a9e18f154 100644 (file)
@@ -455,8 +455,8 @@ AC_DEFUN([AC_OBJEXT],   [])
 # ---------------------------
 # Check for the extension used for the default name for executables.
 #
-# We do this in order to find out what is the extension we must for
-# compiling executables (see _AC_COMPILER_EXEEXT's comments).
+# We do this in order to find out what is the extension we must add for
+# creating executables (see _AC_COMPILER_EXEEXT's comments).
 #
 # Beware of `expr' that may return `0' or `'.  Since this macro is
 # the first one in touch with the compiler, it should also check that
@@ -591,7 +591,7 @@ AC_MSG_RESULT([$ac_cv_exeext])
 #
 # Note that some compilers (cross or not), strictly obey to `-o foo' while
 # the host requires `foo.exe', so we should not depend upon `-o' to
-# test EXEEXT.  But then, be sure no to destroy user files.
+# test EXEEXT.  But then, be sure not to destroy user files.
 #
 # Must be run before _AC_COMPILER_OBJEXT because _AC_COMPILER_EXEEXT_DEFAULT
 # checks whether the compiler works.