aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2012-10-30 14:23:31 +0800
committerChong Yidong2012-10-30 14:23:31 +0800
commitce69a8443a7adc386235cb1b5eba3189dfe89d4e (patch)
tree1d964a0544b3d85e85bd907e98321eb42353052b
parent53372c278e7e79b97aed97b159a00bde45de3a80 (diff)
downloademacs-ce69a8443a7adc386235cb1b5eba3189dfe89d4e.tar.gz
emacs-ce69a8443a7adc386235cb1b5eba3189dfe89d4e.zip
Add a comment for the last isearch.el change.
-rw-r--r--lisp/isearch.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/isearch.el b/lisp/isearch.el
index ead6f88cb97..0bfda880d93 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -2159,6 +2159,8 @@ Isearch mode."
2159 (if (and (integerp key) 2159 (if (and (integerp key)
2160 (>= key ?\s) (/= key 127) (< key 256)) 2160 (>= key ?\s) (/= key 127) (< key 256))
2161 (progn 2161 (progn
2162 ;; Ensure that the processed char is recorded in
2163 ;; the keyboard macro, if any (Bug#4894)
2162 (store-kbd-macro-event key) 2164 (store-kbd-macro-event key)
2163 (isearch-process-search-char key) 2165 (isearch-process-search-char key)
2164 (setq keylist (cdr keylist))) 2166 (setq keylist (cdr keylist)))