diff options
| author | thblt <thibault@thb.lt> | 2017-07-20 13:01:46 +0200 |
|---|---|---|
| committer | thblt <thibault@thb.lt> | 2017-07-20 13:01:46 +0200 |
| commit | cde04f5973334406f24d77ee9ac896f3c01f839b (patch) | |
| tree | 1e93aaaafc6f332d2cd46525b9e00ec1d437eb72 /lisp | |
| parent | 2bcf4d28619cfc899050d8f46939912ea4027dc3 (diff) | |
Use function in cl namespace instead of adding extra dep
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/pdf-info.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/pdf-info.el b/lisp/pdf-info.el index b7d639c..dc6dff1 100644 --- a/lisp/pdf-info.el +++ b/lisp/pdf-info.el @@ -49,7 +49,6 @@ ;;; Code: (require 'tq) -(require 'cl) (require 'cl-lib) @@ -65,7 +64,7 @@ (defcustom pdf-info-epdfinfo-program (expand-file-name (if (eq system-type 'windows-nt) "epdfinfo.exe" "epdfinfo") (let ((dir (file-name-directory (or load-file-name default-directory)))) - (find-if 'file-exists-p + (cl-find-if 'file-exists-p `(,(expand-file-name "build" dir) ,(expand-file-name "../server" dir) dir) |
