diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 552d4cf2f7c..808adc921af 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,12 +1,18 @@ | |||
| 1 | 2000-03-14 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xterm.c (x_term_init): Add support for X resource `synchronous'. | ||
| 4 | If set, call XSynchronize. | ||
| 5 | |||
| 1 | 2000-03-13 Stefan Monnier <monnier@cs.yale.edu> | 6 | 2000-03-13 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 7 | ||
| 3 | * regex.c: Declare a new type `re_char' used throughout the code for the | 8 | * regex.c: Declare a new type `re_char' used throughout the code |
| 4 | string char type. It's `const unsigned char' to match the rest of Emacs. | 9 | for the string char type. It's `const unsigned char' to match the |
| 5 | Consistently make sure all pointers to strings use it and make sure all | 10 | rest of Emacs. Consistently make sure all pointers to strings use |
| 6 | pointers into the pattern use `unsigned char'. | 11 | it and make sure all pointers into the pattern use `unsigned |
| 12 | char'. | ||
| 7 | (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of | 13 | (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of |
| 8 | GET_CHAR_AFTER_2. | 14 | GET_CHAR_AFTER_2. Also merge wordbound and notwordbound to reduce |
| 9 | Also merge wordbound and notwordbound to reduce code duplication. | 15 | code duplication. |
| 10 | 16 | ||
| 11 | * charset.h (GET_CHAR_AFTER_2): Remove. | 17 | * charset.h (GET_CHAR_AFTER_2): Remove. |
| 12 | (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else. | 18 | (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else. |