]> git.eshelyaron.com Git - emacs.git/commitdiff
Change keybinding for backtrace-collapse from '=' to '-'
authorGemini Lasswell <gazally@runbox.com>
Sat, 14 Jul 2018 14:23:15 +0000 (07:23 -0700)
committerGemini Lasswell <gazally@runbox.com>
Fri, 3 Aug 2018 15:53:02 +0000 (08:53 -0700)
'+' 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.

doc/lispref/debugging.texi
lisp/emacs-lisp/backtrace.el

index b5a73a255af9aed8c19f8324bcb678f3b9a9217c..5230854cc7aecf5a6db275b9ed6243d6032d020c 100644 (file)
@@ -451,7 +451,7 @@ Move to the beginning of the next frame.
 Add line breaks and indentation to the top-level Lisp form at point to
 make it more readable.
 
-@item =
+@item -
 Collapse the top-level Lisp form at point back to a single line.
 
 @item #
index aac43fec8e4c99c4c3dbdcccdb6c1049d4c92da6..779feb43075cece0ecec349ecb40849bbaccb74e 100644 (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)