diff options
| author | Noam Postavsky | 2019-06-21 07:09:44 -0400 |
|---|---|---|
| committer | Noam Postavsky | 2019-06-25 22:00:03 -0400 |
| commit | 648fdbbcec159e6bfdb7cd06d32c59e8a17a055e (patch) | |
| tree | 49296e3df33421b1b086eb4e5d2912a20fcb2093 /lisp/info.el | |
| parent | b59ffd2290ff744ca4e7cc2748ba6b66fb2f99f1 (diff) | |
| download | emacs-648fdbbcec159e6bfdb7cd06d32c59e8a17a055e.tar.gz emacs-648fdbbcec159e6bfdb7cd06d32c59e8a17a055e.zip | |
Don't bind search-spaces-regexp around possible autoload (Bug#35802)
* lisp/isearch.el (isearch-search-fun-default): Move possible autoload
trigger outside let-binding of search-spaces-regexp.
* lisp/char-fold.el (char-fold-make-table): Remove no longer needed
workaround.
* lisp/info.el (Info-search-whitespace-regexp):
* lisp/isearch.el (search-whitespace-regexp):
* src/search.c (syms_of_search) <search-spaces-regexp>: Add warning
about adding capturing groups to the value.
* test/lisp/char-fold-tests.el: Remove, binding search-spaces-regexp
to a different should be considered a bug.
Diffstat (limited to 'lisp/info.el')
| -rw-r--r-- | lisp/info.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index f65c6c36272..8e8c3371f42 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -349,7 +349,9 @@ This only has an effect if `Info-hide-note-references' is non-nil." | |||
| 349 | This applies to Info search for regular expressions. | 349 | This applies to Info search for regular expressions. |
| 350 | You might want to use something like \"[ \\t\\r\\n]+\" instead. | 350 | You might want to use something like \"[ \\t\\r\\n]+\" instead. |
| 351 | In the Customization buffer, that is `[' followed by a space, | 351 | In the Customization buffer, that is `[' followed by a space, |
| 352 | a tab, a carriage return (control-M), a newline, and `]+'." | 352 | a tab, a carriage return (control-M), a newline, and `]+'. Don't |
| 353 | add any capturing groups into this value; that can change the | ||
| 354 | numbering of existing capture groups in unexpected ways." | ||
| 353 | :type 'regexp | 355 | :type 'regexp |
| 354 | :group 'info) | 356 | :group 'info) |
| 355 | 357 | ||