diff options
| author | Dmitry Antipov | 2015-01-13 07:08:54 +0300 |
|---|---|---|
| committer | Dmitry Antipov | 2015-01-13 07:08:54 +0300 |
| commit | b53b1ca422ff1925f631be511fbec9deb1e4cc33 (patch) | |
| tree | 5d39e0f04440b06fb1350a657839e868aa5996e9 /src/ChangeLog | |
| parent | ad9c4a4091df19064a7f7f53bfdb687931e141f6 (diff) | |
| download | emacs-b53b1ca422ff1925f631be511fbec9deb1e4cc33.tar.gz emacs-b53b1ca422ff1925f631be511fbec9deb1e4cc33.zip | |
Consolidate duplicated string matching code.
* search.c (fast_string_match_internal): New function,
consolidated from...
(fast_string_match, fast_string_match_ignore_case): ...functions
which are...
* lisp.h (fast_string_match, fast_string_match_ignore_case):
inlined from here now.
(fast_string_match_internal): Add prototype.
* dired.c (file_name_completion): Use fast_string_match_internal.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 792407e15e6..48c7370cade 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -18,6 +18,15 @@ | |||
| 18 | * keyboard.c (Ftop_level, Fexit_recursive_edit) | 18 | * keyboard.c (Ftop_level, Fexit_recursive_edit) |
| 19 | (Fabor_recursive_edit): Add noreturn attribute. | 19 | (Fabor_recursive_edit): Add noreturn attribute. |
| 20 | 20 | ||
| 21 | * search.c (fast_string_match_internal): New function, | ||
| 22 | consolidated from... | ||
| 23 | (fast_string_match, fast_string_match_ignore_case): ...functions | ||
| 24 | which are... | ||
| 25 | * lisp.h (fast_string_match, fast_string_match_ignore_case): | ||
| 26 | inlined from here now. | ||
| 27 | (fast_string_match_internal): Add prototype. | ||
| 28 | * dired.c (file_name_completion): Use fast_string_match_internal. | ||
| 29 | |||
| 21 | 2015-01-12 Paul Eggert <eggert@cs.ucla.edu> | 30 | 2015-01-12 Paul Eggert <eggert@cs.ucla.edu> |
| 22 | 31 | ||
| 23 | Port to 32-bit MingGW --with-wide-int | 32 | Port to 32-bit MingGW --with-wide-int |