summaryrefslogtreecommitdiff
path: root/helm-command.el
diff options
context:
space:
mode:
authorChunyang Xu <mail@xuchunyang.me>2017-06-02 17:19:55 +0800
committerChunyang Xu <mail@xuchunyang.me>2017-06-02 17:23:05 +0800
commitf7c041ea405487ce62c74a1953330c0831c2a34b (patch)
treeb628a3fb0211bdf3c1783aab1225a84ab0cdaa4f /helm-command.el
parentf2ea3f9b5fce74bfc998549f3bcbea693f3ec15f (diff)
* helm-command.el (helm-M-x): Fix for the Lisp debugger.
Diffstat (limited to 'helm-command.el')
-rw-r--r--helm-command.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-command.el b/helm-command.el
index 61cd8d86..726fcabf 100644
--- a/helm-command.el
+++ b/helm-command.el
@@ -285,7 +285,7 @@ You can get help on each command by persistent action."
(cl-flet ((save-hist (command)
(setq extended-command-history
(cons command (delete command extended-command-history)))))
- (condition-case err
+ (condition-case-unless-debug err
(progn
(command-execute sym-com 'record)
(save-hist command-name))