From: Artur Malabarba Date: Sun, 26 Apr 2015 17:59:25 +0000 (+0100) Subject: * bug-hunter.el: Fix a couple of bugs X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/a130936b9bc72b50bc4c112cade1c1d670c4604b * bug-hunter.el: Fix a couple of bugs --- diff --git a/packages/bug-hunter/bug-hunter.el b/packages/bug-hunter/bug-hunter.el index bd6c06da3..70bae255d 100644 --- a/packages/bug-hunter/bug-hunter.el +++ b/packages/bug-hunter/bug-hunter.el @@ -229,8 +229,7 @@ the file." (with-temp-file file-name (print (list 'prin1 form) (current-buffer))) (call-process exec nil out-buf nil - "-Q" "--batch" "-l" - (shell-quote-argument file-name)) + "-Q" "--batch" "-l" file-name) (with-current-buffer out-buf (goto-char (point-max)) (forward-sexp -1) @@ -380,9 +379,6 @@ Wraps them in a progn if necessary." (let ((minibuffer-completing-symbol t)) (minibuffer-with-setup-hook (lambda () - ;; FIXME: call emacs-lisp-mode? - (add-function :before-until (local 'eldoc-documentation-function) - #'elisp-eldoc-documentation-function) (add-hook 'completion-at-point-functions #'elisp-completion-at-point nil t) (run-hooks 'eval-expression-minibuffer-setup-hook))