summaryrefslogtreecommitdiff
path: root/lisp/apropos.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2012-04-23 20:44:54 +0800
committerChong Yidong <cyd@gnu.org>2012-04-23 20:44:54 +0800
commit922d37d3e83008260a9d6eabc1bee6973ed3c6b8 (patch)
treebafc4eb44ebdb2cc4b44870c71aaf830064b7889 /lisp/apropos.el
parent775c916bd7fb488b1a6cb907ee5522c0279d435c (diff)
downloademacs-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.el2
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)