summaryrefslogtreecommitdiff
path: root/helm-eval.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-02-04 12:48:31 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-02-04 12:48:31 +0100
commitef3caebc4270ebfe9107f47ef9f36f9067125482 (patch)
tree3237fa48de8dc6c33e63c9e186f33e91a3f5620f /helm-eval.el
parentf395928c45880985113cafe408b6c6c8bc865d63 (diff)
* helm-eval.el (helm-eldoc-show-in-eval): Fix error message in condition-case.
Diffstat (limited to 'helm-eval.el')
-rw-r--r--helm-eval.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-eval.el b/helm-eval.el
index bca35c94..f10fd180 100644
--- a/helm-eval.el
+++ b/helm-eval.el
@@ -115,7 +115,7 @@ Should take one arg: the string to display."
(when doc (funcall helm-c-eldoc-in-minibuffer-show-fn doc))))
(scan-error nil)
(beginning-of-buffer nil)
- (error (and debug-on-error (message "Eldoc in minibuffer error: %S" err))))))
+ (error (message "Eldoc in minibuffer error: %S" err)))))
(defun helm-c-show-info-in-mode-line (str)
"Display string STR in mode-line."