diff options
| author | Stefan Monnier | 2004-12-08 01:38:05 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2004-12-08 01:38:05 +0000 |
| commit | be02a7ed1fee84954b69df415113b60857f90435 (patch) | |
| tree | ab5e40a06ccf20980160e44636f522dd89c1710c | |
| parent | 5a27c5d8f88eaf2fb29695d927b3be7a0825cf8b (diff) | |
| download | emacs-be02a7ed1fee84954b69df415113b60857f90435.tar.gz emacs-be02a7ed1fee84954b69df415113b60857f90435.zip | |
(isearch-quote-char): Fix up typo in last change.
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/isearch.el | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e881509068f..3ff15d336f3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * isearch.el (isearch-quote-char): Fix up typo in last change. | ||
| 4 | |||
| 1 | 2004-12-07 Luc Teirlinck <teirllm@auburn.edu> | 5 | 2004-12-07 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 6 | ||
| 3 | * mouse.el (mouse-set-font): Handle the case where the command was | 7 | * mouse.el (mouse-set-font): Handle the case where the command was |
| @@ -9,11 +13,10 @@ | |||
| 9 | (edmacro-sanitize-for-string): Correctly remove Meta modifier | 13 | (edmacro-sanitize-for-string): Correctly remove Meta modifier |
| 10 | (as suggested by Kim Storm). | 14 | (as suggested by Kim Storm). |
| 11 | 15 | ||
| 12 | 2004-12-06 Stefan <monnier@iro.umontreal.ca> | 16 | 2004-12-06 Stefan Monnier <monnier@iro.umontreal.ca> |
| 13 | 17 | ||
| 14 | * font-lock.el (font-lock-unfontify-region): Save buffer state. | 18 | * font-lock.el (font-lock-unfontify-region): Save buffer state. |
| 15 | (font-lock-default-unfontify-region): Don't save buffer state any | 19 | (font-lock-default-unfontify-region): Don't save buffer state any more. |
| 16 | more. | ||
| 17 | 20 | ||
| 18 | 2004-12-07 Jay Belanger <belanger@truman.edu> | 21 | 2004-12-07 Jay Belanger <belanger@truman.edu> |
| 19 | 22 | ||
diff --git a/lisp/isearch.el b/lisp/isearch.el index 118d23ce38f..53d2ab1c4fb 100644 --- a/lisp/isearch.el +++ b/lisp/isearch.el | |||
| @@ -1682,7 +1682,7 @@ Isearch mode." | |||
| 1682 | ;; single-byte character set, and convert them to Emacs | 1682 | ;; single-byte character set, and convert them to Emacs |
| 1683 | ;; characters. | 1683 | ;; characters. |
| 1684 | (if (and isearch-regexp (= char ?\ )) | 1684 | (if (and isearch-regexp (= char ?\ )) |
| 1685 | (if (subregexp-context-p isearch-string pos) | 1685 | (if (subregexp-context-p isearch-string (length isearch-string)) |
| 1686 | (isearch-process-search-string "[ ]" " ") | 1686 | (isearch-process-search-string "[ ]" " ") |
| 1687 | (isearch-process-search-char char)) | 1687 | (isearch-process-search-char char)) |
| 1688 | (and enable-multibyte-characters | 1688 | (and enable-multibyte-characters |