diff lisp/info.el @ 263:727739f917cb r20-5b30

Import from CVS: tag r20-5b30
author cvs
date Mon, 13 Aug 2007 10:24:41 +0200
parents f220cc83d72e
children b2472a1930f2
line wrap: on
line diff
--- a/lisp/info.el	Mon Aug 13 10:23:52 2007 +0200
+++ b/lisp/info.el	Mon Aug 13 10:24:41 2007 +0200
@@ -2660,12 +2660,12 @@
 			(list (vector (one-space (cadr in)) in t)
 			      "--:shadowEtchedIn"))
 		    (list
-		     ["Goto Info Top-level" Info-directory t]
-		     (vector "Next Node" 'Info-next next-p)
-		     (vector "Previous Node" 'Info-prev prev-p)
-		     (vector "Parent Node (Up)" 'Info-up up-p)
-		     ["Goto Node..." Info-goto-node t]
-		     ["Goto Last Visited Node " Info-last t])))
+		     ["Goto Info Top-level" Info-directory]
+		     (vector "Next Node" 'Info-next :active next-p)
+		     (vector "Previous Node" 'Info-prev :active prev-p)
+		     (vector "Parent Node (Up)" 'Info-up :active up-p)
+		     ["Goto Node..." Info-goto-node]
+		     ["Goto Last Visited Node " Info-last])))
 	;; Find the xrefs and make a list
 	(while (re-search-forward xref-regexp nil t)
 	  (setq xrefs (cons (one-space (buffer-substring (match-beginning 1)
@@ -2690,8 +2690,7 @@
 			   (if (eq xref 'more)
 			       "...more..."
 			     (vector xref
-				     (list 'Info-follow-reference xref)
-				     t)))
+				     (list 'Info-follow-reference xref))))
 		       xrefs)))
     (if subnodes
 	(nconc menu (list "--:shadowDoubleEtchedIn"
@@ -2700,8 +2699,7 @@
 	       (mapcar #'(lambda (node)
 			   (if (eq node 'more)
 			       "...more..."
-			     (vector node (list 'Info-menu node)
-				     t)))
+			     (vector node (list 'Info-menu node))))
 		       subnodes)))
     menu))