summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorGemini Lasswell <gazally@runbox.com>2018-07-14 07:23:15 -0700
committerGemini Lasswell <gazally@runbox.com>2018-08-03 08:53:02 -0700
commit2ede75c49b62439e15be3ab8be2c14594f846da6 (patch)
tree057bcbccfd09f9fcf0ac5fd1a1d9d417d1b54cc9 /lisp/emacs-lisp
parent04cc0b615847e4b3ee15c7bd86499ee044abe3fa (diff)
downloademacs-2ede75c49b62439e15be3ab8be2c14594f846da6.tar.gz
emacs-2ede75c49b62439e15be3ab8be2c14594f846da6.tar.bz2
emacs-2ede75c49b62439e15be3ab8be2c14594f846da6.zip
Change keybinding for backtrace-collapse from '=' to '-'
'+' and '-' make a more intuitive pair of keybindings for backtrace-pretty-print and backtrace-collapse than '+' and '='. * lisp/emacs-lisp/backtrace.el (backtrace-mode-map): * doc/lispref/debugging.texi (Backtraces): Change keybinding for backtrace-collapse.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/backtrace.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/backtrace.el b/lisp/emacs-lisp/backtrace.el
index aac43fec8e4..779feb43075 100644
--- a/lisp/emacs-lisp/backtrace.el
+++ b/lisp/emacs-lisp/backtrace.el
@@ -186,7 +186,7 @@ This is commonly used to recompute `backtrace-frames'.")
(define-key map "#" 'backtrace-toggle-print-circle)
(define-key map "\C-m" 'backtrace-help-follow-symbol)
(define-key map "+" 'backtrace-pretty-print)
- (define-key map "=" 'backtrace-collapse)
+ (define-key map "-" 'backtrace-collapse)
(define-key map [follow-link] 'mouse-face)
(define-key map [mouse-2] 'mouse-select-window)
map)