# HG changeset patch # User Kevin Ryde # Date 1261863171 0 # Node ID bef8989591e3f5cf364ae998395eba7f0fa152f6 # Parent 15f0de42e686ae5b9c50ca7533dccf5ffd108b17 Tweak a comment: it's man-db on gnu/linux which agrees with posix that man -k arg is an egrep regexp. (No need to changelog something this small is there?) diff -r 15f0de42e686 -r bef8989591e3 lisp/man.el --- a/lisp/man.el Sat Dec 26 21:30:00 2009 +0000 +++ b/lisp/man.el Sat Dec 26 21:32:51 2009 +0000 @@ -763,9 +763,9 @@ (unless (and Man-completion-cache (string-prefix-p (car Man-completion-cache) prefix)) (with-temp-buffer - (setq default-directory "/") ;; in case inherited doesn't - ;; exist Actually for my `man' the arg is a regexp. - ;; POSIX says it must be ERE and GNU/Linux seems to agree, + (setq default-directory "/") ;; in case inherited doesn't exist + ;; Actually for my `man' the arg is a regexp. + ;; POSIX says it must be ERE and "man-db" seems to agree, ;; whereas under MacOSX it seems to be BRE-style and doesn't ;; accept backslashes at all. Let's not bother to ;; quote anything.