diff options
| author | Stefan Monnier | 2000-03-19 23:23:50 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-03-19 23:23:50 +0000 |
| commit | 4e8a91326953fc5ad2273c72f545a7ebdefacdd0 (patch) | |
| tree | deaae57ffc712de5bbc99a17eaca4f8914fc1999 /src/ChangeLog | |
| parent | fc4e96c8e8a97327360cd3271381bf2de711d1eb (diff) | |
| download | emacs-4e8a91326953fc5ad2273c72f545a7ebdefacdd0.tar.gz emacs-4e8a91326953fc5ad2273c72f545a7ebdefacdd0.zip | |
(RE_STRING_CHAR): New macro.
(GET_CHAR_AFER_2): Remove.
(RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h.
(enum re_opcode_t): Remove on_failure_jump_exclusive.
(print_partial_compiled_pattern, re_compile_fastmap)
(re_match_2_internal): Remove on_failure_jump_exclusive.
(regex_compile): Turn optimizable P+ loops into PP*, so that the
optimization only need to work for * (ie. can use of_keep_string_jump).
Remove the special case for .*\n since it is now covered by the general
optimization.
(re_search_2): Don't bother with `room'.
(skip_one_char): New function.
(skip_noops): Simplify since `memory' is not needed any more.
(mutually_exclusive_p): Restructure slightly to use `switch' and
add handling for "all" remaining cases.
(re_match_2_internal): Change on_failure_jump_smart to use
on_failure_keep_string_jump (and redirect the end-of-loop jump)
rather than on_failure_jump_exclusive.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 93e823be2d2..70b65ce807b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2000-03-19 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c. | ||
| 4 | |||
| 5 | * regex.c (RE_STRING_CHAR): New macro. | ||
| 6 | (GET_CHAR_AFER_2): Remove. | ||
| 7 | (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h. | ||
| 8 | (enum re_opcode_t): Remove on_failure_jump_exclusive. | ||
| 9 | (print_partial_compiled_pattern, re_compile_fastmap) | ||
| 10 | (re_match_2_internal): Remove on_failure_jump_exclusive. | ||
| 11 | (regex_compile): Turn optimizable P+ loops into PP*, so that the | ||
| 12 | optimization only need to work for * (ie. can use of_keep_string_jump). | ||
| 13 | Remove the special case for .*\n since it is now covered by the general | ||
| 14 | optimization. | ||
| 15 | (re_search_2): Don't bother with `room'. | ||
| 16 | (skip_one_char): New function. | ||
| 17 | (skip_noops): Simplify since `memory' is not needed any more. | ||
| 18 | (mutually_exclusive_p): Restructure slightly to use `switch' and | ||
| 19 | add handling for "all" remaining cases. | ||
| 20 | (re_match_2_internal): Change on_failure_jump_smart to use | ||
| 21 | on_failure_keep_string_jump (and redirect the end-of-loop jump) | ||
| 22 | rather than on_failure_jump_exclusive. | ||
| 23 | |||
| 1 | 2000-03-19 Gerd Moellmann <gerd@gnu.org> | 24 | 2000-03-19 Gerd Moellmann <gerd@gnu.org> |
| 2 | 25 | ||
| 3 | * xfns.c (select_visual): Don't set dpyinfo->n_planes to the | 26 | * xfns.c (select_visual): Don't set dpyinfo->n_planes to the |