Fix RET in debug-mode-map for emacs 27.

This commit is contained in:
Sergey Trofimov 2019-03-24 07:03:07 +03:00 committed by James N
parent 4a6fabc7c5
commit 5d32ceb898
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,9 @@
;; motion
(kbd "<tab>") 'forward-button
(kbd "S-<tab>") 'backward-button
(kbd "<return>") 'debug-help-follow
(kbd "<return>") (if (< emacs-major-version 27)
'debug-help-follow
'backtrace-help-follow-symbol)
(kbd "SPC") 'next-line
"R" 'debugger-record-expression