diff options
author | Chong Yidong <cyd@gnu.org> | 2012-04-23 20:44:54 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-04-23 20:44:54 +0800 |
commit | 922d37d3e83008260a9d6eabc1bee6973ed3c6b8 (patch) | |
tree | bafc4eb44ebdb2cc4b44870c71aaf830064b7889 /lisp/apropos.el | |
parent | 775c916bd7fb488b1a6cb907ee5522c0279d435c (diff) | |
download | emacs-922d37d3e83008260a9d6eabc1bee6973ed3c6b8.tar.gz |
* apropos.el (apropos-read-pattern): Fix word list splitting.
Fixes: debbugs:11132
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r-- | lisp/apropos.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 6bf396a1632..25163dcab99 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -336,7 +336,7 @@ kind of objects to search." (read-string (concat "Search for " subject " (word list or regexp): ")))) (if (string-equal (regexp-quote pattern) pattern) ;; Split into words - (split-string pattern "[ \t]+") + (split-string pattern "[ \t]+" t) pattern))) (defun apropos-parse-pattern (pattern) |