]> git.eshelyaron.com Git - emacs.git/commitdiff
(Man-completion-table): Don't signal an error if we can't run
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 11 Feb 2010 16:00:01 +0000 (11:00 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 11 Feb 2010 16:00:01 +0000 (11:00 -0500)
manual-program (bug#4056).

lisp/ChangeLog
lisp/man.el

index 83800e9cb776db0ed4ad8abfa0fbcc2fb1991078..e5ad1f144625c2f047ccf61ec7709325f0b03707 100644 (file)
@@ -1,3 +1,8 @@
+2010-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * man.el (Man-completion-table): Don't signal an error if we can't run
+       manual-program (bug#4056).
+
 2010-02-10  Juanma Barranquero  <lekktu@gmail.com>
 
        * textmodes/artist.el (artist-mt): Fix typos in docstring.
index e729e11b6ca8c33b137ad55396ee7ee197d9038c..dd64fbda574c68985c29b84baed799bbcd6b6a88 100644 (file)
@@ -771,8 +771,13 @@ POS defaults to `point'."
           ;; quote anything.
           (let ((process-environment (copy-sequence process-environment)))
             (setenv "COLUMNS" "999") ;; don't truncate long names
-            (call-process manual-program nil '(t nil) nil
-                          "-k" (concat "^" prefix)))
+            ;; manual-program might not even exist.  And since it's
+            ;; run differently in Man-getpage-in-background, an error
+            ;; here may not necessarily mean that we'll also get an
+            ;; error later.
+            (ignore-errors
+              (call-process manual-program nil '(t nil) nil
+                            "-k" (concat "^" prefix))))
           (goto-char (point-min))
           (while (re-search-forward "^\\([^ \t\n]+\\)\\(?: ?\\((.+?)\\)\\(?:[ \t]+- \\(.*\\)\\)?\\)?" nil t)
             (push (propertize (concat (match-string 1) (match-string 2))