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.
This commit is contained in:
Gemini Lasswell 2018-07-14 07:23:15 -07:00
parent 04cc0b6158
commit 2ede75c49b
2 changed files with 2 additions and 2 deletions

View file

@ -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)