aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emacs-lisp/debug.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp/debug.el')
-rw-r--r--lisp/emacs-lisp/debug.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el
index 49303ff6293..15158440945 100644
--- a/lisp/emacs-lisp/debug.el
+++ b/lisp/emacs-lisp/debug.el
@@ -277,7 +277,7 @@ That buffer should be current already."
277 (set-buffer (or buffer (current-buffer))) 277 (set-buffer (or buffer (current-buffer)))
278 (goto-char (point-min)) 278 (goto-char (point-min))
279 (let ((buffer-read-only nil)) 279 (let ((buffer-read-only nil))
280 (while (re-search-forward "^[* ] (?\\(\\(\\sw\\|\\s_\\)+\\)" nil t) 280 (while (re-search-forward "\\(\\(\\sw\\|\\s_\\)+\\)" nil t)
281 (let* ((sym (intern-soft (match-string 1))) 281 (let* ((sym (intern-soft (match-string 1)))
282 (file (symbol-file sym))) 282 (file (symbol-file sym)))
283 (when file (help-xref-button 1 'help-function-def sym file))))))) 283 (when file (help-xref-button 1 'help-function-def sym file)))))))