summaryrefslogtreecommitdiff
path: root/lisp/net/eudcb-mab.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-11-13 14:47:35 -0500
committerGlenn Morris <rgm@gnu.org>2018-11-13 14:47:35 -0500
commit1b27c4890d68882ef27eabe9984b6f5cfcc1b265 (patch)
treea79b94c606a8f07632edd2d75100cc11deca026f /lisp/net/eudcb-mab.el
parent7e2a1543985a770c93c9825c661bbb9b51b5e36f (diff)
downloademacs-1b27c4890d68882ef27eabe9984b6f5cfcc1b265.tar.gz
No need to pass absolute program name to call-process
* lisp/doc-view.el (doc-view-revert-buffer): * lisp/net/eudcb-mab.el (eudc-mab-query-internal): Remove superfluous executable-find.
Diffstat (limited to 'lisp/net/eudcb-mab.el')
-rw-r--r--lisp/net/eudcb-mab.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/net/eudcb-mab.el b/lisp/net/eudcb-mab.el
index a69c77b7235..4d517c19954 100644
--- a/lisp/net/eudcb-mab.el
+++ b/lisp/net/eudcb-mab.el
@@ -61,8 +61,7 @@ RETURN-ATTRS is a list of attributes to return, defaulting to
(goto-char (point-min))
(when (or (eobp) (time-less-p eudc-buffer-time modified))
(erase-buffer)
- (call-process (executable-find "contacts") nil t nil
- "-H" "-l" "-f" fmt-string)
+ (call-process "contacts" nil t nil "-H" "-l" "-f" fmt-string)
(setq eudc-buffer-time modified))
(goto-char (point-min))
(while (not (eobp))