comparison lisp/x11/x-menubar.el @ 169:15872534500d r20-3b11

Import from CVS: tag r20-3b11
author cvs
date Mon, 13 Aug 2007 09:46:53 +0200
parents 85ec50267440
children 929b76928fce
comparison
equal deleted inserted replaced
168:9851d5c6556e 169:15872534500d
845 "*Build the bookmark jump submenu dynamically from all defined bookmarks." 845 "*Build the bookmark jump submenu dynamically from all defined bookmarks."
846 (if (bookmark-all-names) 846 (if (bookmark-all-names)
847 (mapcar 847 (mapcar
848 #'(lambda (bmk) 848 #'(lambda (bmk)
849 (vector bmk `(bookmark-jump ',bmk) t)) (bookmark-all-names)) 849 (vector bmk `(bookmark-jump ',bmk) t)) (bookmark-all-names))
850 (list "No Bookmarks Set"))) 850 '(["No Bookmarks Set" nil nil])))
851 851
852 (defun bookmark-delete-filter (menu-items) 852 (defun bookmark-delete-filter (menu-items)
853 "*Build the bookmark delete submenu dynamically from all defined bookmarks." 853 "*Build the bookmark delete submenu dynamically from all defined bookmarks."
854 (if (bookmark-all-names) 854 (if (bookmark-all-names)
855 (mapcar 855 (mapcar
856 #'(lambda (bmk) 856 #'(lambda (bmk)
857 (vector bmk `(bookmark-delete ',bmk) t)) (bookmark-all-names)) 857 (vector bmk `(bookmark-delete ',bmk) t)) (bookmark-all-names))
858 (list "No Bookmarks Set"))) 858 '(["No Bookmarks Set" nil nil])))
859 859
860 ;;; The Buffers menu 860 ;;; The Buffers menu
861 861
862 (defvar buffers-menu-max-size 25 862 (defvar buffers-menu-max-size 25
863 "*Maximum number of entries which may appear on the \"Buffers\" menu. 863 "*Maximum number of entries which may appear on the \"Buffers\" menu.