diff options
| author | Paul Eggert <eggert@cs.ucla.edu> | 2023-08-28 12:42:23 -0700 |
|---|---|---|
| committer | Paul Eggert <eggert@cs.ucla.edu> | 2023-08-28 14:06:43 -0700 |
| commit | 2dddc87214503199a38beeb175cd42cbb43cdff1 (patch) | |
| tree | ca6109cc31cb86e167a312a303b791aa303bcc43 /src/od.c | |
| parent | test: omit unreachable code (diff) | |
| download | coreutils-2dddc87214503199a38beeb175cd42cbb43cdff1.tar.gz coreutils-2dddc87214503199a38beeb175cd42cbb43cdff1.zip | |
maint: spelling fixes, including author names
Most of this just affects commentary and documentations. The only
significant behavior change is translating author names via
proper_name_lite rather than proper_name_utf8, or not translating
them at all. proper_name_lite is good enough for coreutils and
avoids the bloat that had coreutils not using Gnulib proper_name.
* bootstrap.conf (gnulib_modules): Use propername-lite instead
of propername.
(XGETTEXT_OPTIONS): Look for proper_name_lite instead of for
proper_name_utf8.
* cfg.mk (local-checks-to-skip): Remove
sc_proper_name_utf8_requires_ICONV, since we no longer use
proper_name_utf8.
(old_NEWS_hash): Update.
(sc_check-I18N-AUTHORS): Remove; no longer needed.
Diffstat (limited to 'src/od.c')
| -rw-r--r-- | src/od.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -268,7 +268,7 @@ static enum size_spec fp_type_size[MAX_FP_TYPE_SIZE + 1]; # define WORDS_BIGENDIAN 0 #endif -/* Use native endianess by default. */ +/* Use native endianness by default. */ static bool input_swap; static char const short_options[] = "A:aBbcDdeFfHhIij:LlN:OoS:st:vw::Xx"; @@ -1746,7 +1746,7 @@ main (int argc, char **argv) CASE_OLD_ARG ('i', "dI"); case 'I': case 'L': /* obsolescent and undocumented aliases */ CASE_OLD_ARG ('l', "dL"); - CASE_OLD_ARG ('O', "o4"); /* obsolesent and undocumented */ + CASE_OLD_ARG ('O', "o4"); /* obsolescent and undocumented */ case 'B': /* obsolescent and undocumented alias */ CASE_OLD_ARG ('o', "o2"); CASE_OLD_ARG ('s', "d2"); |
