changeset 40856:d3f3e805f0fc

(debugger-make-xrefs): Add buttons to all symbols.
author Sam Steingold <sds@gnu.org>
date Fri, 09 Nov 2001 17:07:24 +0000
parents 0dddc8f93861
children bb2506ee2e9e
files lisp/ChangeLog lisp/emacs-lisp/debug.el
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Fri Nov 09 16:21:34 2001 +0000
+++ b/lisp/ChangeLog	Fri Nov 09 17:07:24 2001 +0000
@@ -1,9 +1,14 @@
+2001-11-09  Sam Steingold  <sds@gnu.org>
+
+	* emacs-lisp/debug.el (debugger-make-xrefs):
+	Add buttons to all symbols.
+
 2001-11-09  Andre Spiegel  <spiegel@gnu.org>
 
 	* vc.el: Add John David Smith to credits.
-		
+
 	Suggested by Kalle Olavi Niemitalo <kon@iki.fi>:
-	
+
 	* vc-hooks.el (vc-error-occured): Backquotified.
 	(vc-file-prop-obarray): Use prime length for better efficiency.
 
--- a/lisp/emacs-lisp/debug.el	Fri Nov 09 16:21:34 2001 +0000
+++ b/lisp/emacs-lisp/debug.el	Fri Nov 09 17:07:24 2001 +0000
@@ -277,7 +277,7 @@
     (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)))))))