1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 14:30:50 -08:00

(debugger-mode-map): Bind C-m, not `RET'.

(debugger-make-xrefs): Only make a button for the first symbol on any line.
This commit is contained in:
Richard M. Stallman 2001-12-25 08:14:45 +00:00
parent 96c01bd4e3
commit f27b0335d1

View file

@ -337,7 +337,8 @@ That buffer should be current already."
;; help-xref-button needs to operate on something matched
;; by a regexp, so set that up for it.
(re-search-forward "\\(\\(\\sw\\|\\s_\\)+\\)")
(help-xref-button 1 'help-function-def sym file))))
(help-xref-button 1 'help-function-def sym file)))
(forward-line 1))
(widen))
(setq debugger-previous-backtrace (buffer-string))))
@ -530,7 +531,7 @@ Applies to the frame whose line point is on in the backtrace."
(define-key debugger-mode-map "e" 'debugger-eval-expression)
(define-key debugger-mode-map " " 'next-line)
(define-key debugger-mode-map "R" 'debugger-record-expression)
(define-key debugger-mode-map [RET] 'help-follow)
(define-key debugger-mode-map "\C-m" 'help-follow)
(define-key debugger-mode-map [mouse-2] 'push-button)
))