]> code.delx.au - gnu-emacs-elpa/commitdiff
* bug-hunter.el: Fix a couple of bugs
authorArtur Malabarba <bruce.connor.am@gmail.com>
Sun, 26 Apr 2015 17:59:25 +0000 (18:59 +0100)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Sun, 26 Apr 2015 18:03:42 +0000 (19:03 +0100)
packages/bug-hunter/bug-hunter.el

index bd6c06da340af50b30500b047fe17d7b2d6283b5..70bae255d65ce2a4f3ccb9fd6f67c6ed72efb6a4 100644 (file)
@@ -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))