diff options
author | Eli Zaretskii <eliz@gnu.org> | 2009-03-07 14:36:36 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2009-03-07 14:36:36 +0000 |
commit | 00460cfd96419cbcd664649ad41d8e01c651f0b5 (patch) | |
tree | 6fa72670c136d03477d25985e824fb525218526a /lisp/woman.el | |
parent | 1bf0da029a5bfa7114003224a414d739d7ccc5cb (diff) | |
download | emacs-00460cfd96419cbcd664649ad41d8e01c651f0b5.tar.gz |
(woman-parse-colon-path): Return a list even if there's only one directory
in PATHS.
Diffstat (limited to 'lisp/woman.el')
-rw-r--r-- | lisp/woman.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/woman.el b/lisp/woman.el index d739f64bf06..5fbb5ef6fdb 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -468,7 +468,7 @@ As a special case, if PATHS is nil then replace it by calling (parse-colon-path paths))) ((string-match "\\`[a-zA-Z]:" paths) ;; Assume single DOS-style path... - paths) + (list paths)) (t ;; Assume UNIX/Cygwin-style path-list... (woman-mapcan ; splice list into list |