diff options
| author | Paul Eggert | 2012-08-16 14:58:44 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-16 14:58:44 -0700 |
| commit | 620f13b0612810324592ab2d2b4e5a5dab27f981 (patch) | |
| tree | 844d21f0c90ede1887eb699058398f5f9a81f069 /src/ChangeLog | |
| parent | 85c2386bbe5d7957cf5750b6f96b2868f83eedf4 (diff) | |
| download | emacs-620f13b0612810324592ab2d2b4e5a5dab27f981.tar.gz emacs-620f13b0612810324592ab2d2b4e5a5dab27f981.zip | |
Use ASCII tests for character types.
* admin/merge-gnulib (GNULIB_MODULES): Add c-ctype.
* lwlib/lwlib-Xaw.c, lwlib/lwlib.c, lwlib/xlwmenu.c:
Don't include <ctype.h>; no longer needed.
* lwlib/lwlib-Xaw.c (openFont):
* lwlib/xlwmenu.c (openXftFont): Test just for ASCII digits.
* src/category.c, src/dispnew.c, src/doprnt.c, src/editfns.c, src/syntax.c
* src/term.c, src/xfns.c, src/xterm.c:
Don't include <ctype.h>; was not needed.
* src/charset.c, src/doc.c, src/fileio.c, src/font.c, src/frame.c:
* src/gtkutil.c, src/image.c, src/sysdep.c, src/xfaces.c:
Include <c-ctype.h> instead of <ctype.h>.
* src/nsterm.m: Include <c-ctype.h>.
* src/charset.c (read_hex):
* src/doc.c (Fsnarf_documentation):
* src/fileio.c (IS_DRIVE) [WINDOWSNT]:
(DRIVE_LETTER) [DOS_NT]:
(Ffile_name_directory, Fexpand_file_name)
(Fsubstitute_in_file_name):
* src/font.c (font_parse_xlfd, font_parse_fcname):
* src/frame.c (x_set_font_backend):
* src/gtkutil.c (xg_get_font):
* src/image.c (xbm_scan, xpm_scan, pbm_scan_number):
* src/nsimage.m (hexchar):
* src/nsterm.m (ns_xlfd_to_fontname):
* src/sysdep.c (system_process_attributes):
* src/xfaces.c (hash_string_case_insensitive):
Use C-locale tests instead of locale-specific tests for character
types, since we want the ASCII interpretation here, not the
interpretation suitable for whatever happens to be the current locale.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 95140401eb2..874088bb782 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,31 @@ | |||
| 1 | 2012-08-16 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Use ASCII tests for character types. | ||
| 4 | * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c: | ||
| 5 | * xfns.c, xterm.c: | ||
| 6 | Don't include <ctype.h>; was not needed. | ||
| 7 | * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c: | ||
| 8 | * sysdep.c, xfaces.c: | ||
| 9 | Include <c-ctype.h> instead of <ctype.h>. | ||
| 10 | * nsterm.m: Include <c-ctype.h>. | ||
| 11 | * charset.c (read_hex): | ||
| 12 | * doc.c (Fsnarf_documentation): | ||
| 13 | * fileio.c (IS_DRIVE) [WINDOWSNT]: | ||
| 14 | (DRIVE_LETTER) [DOS_NT]: | ||
| 15 | (Ffile_name_directory, Fexpand_file_name) | ||
| 16 | (Fsubstitute_in_file_name): | ||
| 17 | * font.c (font_parse_xlfd, font_parse_fcname): | ||
| 18 | * frame.c (x_set_font_backend): | ||
| 19 | * gtkutil.c (xg_get_font): | ||
| 20 | * image.c (xbm_scan, xpm_scan, pbm_scan_number): | ||
| 21 | * nsimage.m (hexchar): | ||
| 22 | * nsterm.m (ns_xlfd_to_fontname): | ||
| 23 | * sysdep.c (system_process_attributes): | ||
| 24 | * xfaces.c (hash_string_case_insensitive): | ||
| 25 | Use C-locale tests instead of locale-specific tests for character | ||
| 26 | types, since we want the ASCII interpretation here, not the | ||
| 27 | interpretation suitable for whatever happens to be the current locale. | ||
| 28 | |||
| 1 | 2012-08-16 Martin Rudalics <rudalics@gmx.at> | 29 | 2012-08-16 Martin Rudalics <rudalics@gmx.at> |
| 2 | 30 | ||
| 3 | Consistently check windows for validity/liveness | 31 | Consistently check windows for validity/liveness |