CVS update by youngs xemacs/lisp ...

xemacs-cvs at xemacs.org xemacs-cvs at xemacs.org
Sat Oct 14 20:50:56 EDT 2006


  User: youngs  
  Date: 06/10/15 02:50:55

  Modified:    xemacs/lisp ChangeLog info.el
Log:
2006-10-14  Jeff Miller  <jmiller at xemacs.org>

        * info.el (Info-find-emacs-command-nodes): fix regex for find
          command node.

Revision  Changes    Path
1.761     +5 -0      XEmacs/xemacs/lisp/ChangeLog

Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/ChangeLog,v
retrieving revision 1.760
retrieving revision 1.761
diff -u -p -r1.760 -r1.761
--- ChangeLog	2006/08/11 01:30:22	1.760
+++ ChangeLog	2006/10/15 00:50:50	1.761
@@ -1,3 +1,8 @@
+2006-10-14  Jeff Miller  <jmiller at xemacs.org>
+
+        * info.el (Info-find-emacs-command-nodes): fix regex for find
+          command node.  
+
 2006-08-10  Vin Shelton  <acs at xemacs.org>
 
 	* subr.el: Move string-to-char-list to obsolete.el.



1.35      +1 -1      XEmacs/xemacs/lisp/info.el

Index: info.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/info.el,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -p -r1.34 -r1.35
--- info.el	2004/12/06 03:51:21	1.34
+++ info.el	2006/10/15 00:50:52	1.35
@@ -3117,7 +3117,7 @@ The locations are of the format used in 
 \(FILENAME NODENAME BUFFERPOS\)."
   (let ((where '())
 	(cmd-desc (concat "^\\* " (regexp-quote (symbol-name command))
-			  ":\\s *\\(.*\\)\\.$")))
+			  ":\\s *\\(.*\\)\\.")))
     (save-excursion
       (Info-find-node "XEmacs" "Command Index")
       ;; Take the index node off the Info history.






More information about the XEmacs-CVS mailing list