diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2008-09-01 06:42:52 -0600 |
---|---|---|
committer | Eric Blake <ebb9@byu.net> | 2008-09-01 06:42:52 -0600 |
commit | 0052651d855f65a3b22f05a580d9003d616bd260 (patch) | |
tree | 6e1fd73ea86a5e16171d87cfa4d96e0e1fb7dbe9 /modules | |
parent | 1403acf46f9ecac8ad796e8c618f33082667f840 (diff) | |
download | m4-0052651d855f65a3b22f05a580d9003d616bd260.tar.gz |
Typos in source code comments.
* modules/m4.c: Fix typos in comments.
* m4/input.c: Likewise.
* src/main.c: Likewise.
Signed-off-by: Eric Blake <ebb9@byu.net>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/m4.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/m4.c b/modules/m4.c index c46b3af3..0c9a1456 100644 --- a/modules/m4.c +++ b/modules/m4.c @@ -651,8 +651,9 @@ M4BUILTIN_HANDLER (changecom) and "sinclude". This differs from bringing back diversions, in that the input is scanned before being copied to the output. */ -/* Generic include function. Include the file given by the first argument, - if it exists. Complain about inaccesible files iff SILENT is false. */ +/* Generic include function. Include the file given by the first + argument, if it exists. Complain about inaccessible files iff + SILENT is false. */ static void include (m4 *context, int argc, m4_macro_args *argv, bool silent) { @@ -1133,12 +1134,12 @@ M4BUILTIN_HANDLER (translit) (*(x) = (number) ((unumber) *(x) >> (*(y) & shift_mask))) -/* The function ntoa () converts VALUE to a signed ascii representation in +/* The function ntoa () converts VALUE to a signed ASCII representation in radix RADIX. Radix must be between 2 and 36, inclusive. */ static const char * ntoa (number value, int radix) { - /* Digits for number to ascii conversions. */ + /* Digits for number to ASCII conversions. */ static char const ntoa_digits[] = "0123456789abcdefghijklmnopqrstuvwxyz"; bool negative; |