]> git.eshelyaron.com Git - emacs.git/commitdiff
(buffers-menu-max-size): Move definition to top of file.
authorRichard M. Stallman <rms@gnu.org>
Tue, 26 Dec 1995 19:11:18 +0000 (19:11 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 26 Dec 1995 19:11:18 +0000 (19:11 +0000)
lisp/menu-bar.el

index 986f61e6c545058ffea25b77914e390f0e6a1fc3..92c59138ff3bd9e833882a4247b7657e04998235 100644 (file)
 
 ;; Avishai Yacobi suggested some menu rearrangements.
 
+;;; User options:
+
+(defvar buffers-menu-max-size 10
+  "*Maximum number of entries which may appear on the Buffers menu.
+If this is 10, then only the ten most-recently-selected buffers are shown.
+If this is nil, then all buffers are shown.
+A large number or nil slows down menu responsiveness.")
+
 ;;; Code:
 
 ;; Don't clobber an existing menu-bar keymap, to preserve any menu-bar key
@@ -424,12 +432,6 @@ Do the same for the keys of the same name."
 (define-key global-map [menu-bar buffer]
   (cons "Buffers" (make-sparse-keymap "Buffers")))
 
-(defvar buffers-menu-max-size 10
-  "*Maximum number of entries which may appear on the Buffers menu.
-If this is 10, then only the ten most-recently-selected buffers are shown.
-If this is nil, then all buffers are shown.
-A large number or nil slows down menu responsiveness.")
-
 (defvar list-buffers-directory nil)
 
 (defvar menu-bar-update-buffers-maxbuf)