# HG changeset patch # User Eli Zaretskii # Date 1236436553 0 # Node ID 9204501d759c86ffe5aacd8317cab4b2d6061a6e # Parent c9e4d48261ce07976cbd89f5fe6df40849c7012d (woman-parse-colon-path): Return a list even if there's only one directory in PATHS. diff -r c9e4d48261ce -r 9204501d759c lisp/woman.el --- a/lisp/woman.el Sat Mar 07 13:31:35 2009 +0000 +++ b/lisp/woman.el Sat Mar 07 14:35:53 2009 +0000 @@ -468,7 +468,7 @@ (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