diff lisp/man.el @ 106648:bef8989591e3

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?)
author Kevin Ryde <user42@zip.com.au>
date Sat, 26 Dec 2009 21:32:51 +0000
parents dfa5f38a6a2a
children 11605ddedbe6
line wrap: on
line diff
--- 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.