aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-15 14:22:21 -0700
committerPaul Eggert2011-03-15 14:22:21 -0700
commit880433015d01974c015718f73c203ad36e47139b (patch)
treeb401ac3474a1574fc43184e07e46c07676793ce4 /src
parent5da9919f99ebacbc511113134ef8f687a562d5b8 (diff)
downloademacs-880433015d01974c015718f73c203ad36e47139b.tar.gz
emacs-880433015d01974c015718f73c203ad36e47139b.zip
Add ChangeLog entry for previous change.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 706612da945..a02d1473b4c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,14 @@
12011-03-15 Paul Eggert <eggert@cs.ucla.edu> 12011-03-15 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Use functions, not macros, for up- and down-casing (Bug#8254).
4 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
5 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
6 to use the following functions instead of these macros.
7 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
8 EMACS_INT, since callers assume the returned value fits in int.
9 (upcase1): Likewise, for UPCASE_TABLE.
10 (uppercasep, lowercasep, upcase): New static inline functions.
11
3 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT): 12 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
4 Rename locals to avoid shadowing. 13 Rename locals to avoid shadowing.
5 (regex_compile, re_match_2_internal): Move locals to avoid shadowing. 14 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.