(debugger-make-xrefs): Add buttons to all symbols.

This commit is contained in:
Sam Steingold 2001-11-09 17:07:24 +00:00
parent 0d8305851d
commit 34decfdb95
2 changed files with 8 additions and 3 deletions

View file

@ -277,7 +277,7 @@ That buffer should be current already."
(set-buffer (or buffer (current-buffer)))
(goto-char (point-min))
(let ((buffer-read-only nil))
(while (re-search-forward "^[* ] (?\\(\\(\\sw\\|\\s_\\)+\\)" nil t)
(while (re-search-forward "\\(\\(\\sw\\|\\s_\\)+\\)" nil t)
(let* ((sym (intern-soft (match-string 1)))
(file (symbol-file sym)))
(when file (help-xref-button 1 'help-function-def sym file)))))))