From xemacs-m  Mon Jun 23 17:39:23 1997
Received: from jagor.srce.hr (hniksic@jagor.srce.hr [161.53.2.130])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id RAA07513
	for <xemacs-beta@xemacs.org>; Mon, 23 Jun 1997 17:39:22 -0500 (CDT)
Received: (from hniksic@localhost)
          by jagor.srce.hr (8.8.5/8.8.4)
	  id AAA27441; Tue, 24 Jun 1997 00:39:22 +0200 (MET DST)
To: XEmacs Developers <xemacs-beta@xemacs.org>
Subject: Re: x-menubar oops fix [PATCH]
References: <bciwwnl0xf2.fsf@corp.Sun.COM>
X-Attribution: Hrv
X-Face: Mie8:rOV<\c/~z{s.X4A{!?vY7{drJ([U]0O=W/<W*SMo/Mv:58:*_y~ki>xDi&N7XG
        KV^$k0m3Oe/)'e%3=$PCR&3ITUXH,cK>]bci&<qQ>Ff%x_>1`T(+M2Gg/fgndU%k*ft
        [(7._6e0n-V%|%'[c|q:;}td$#INd+;?!-V=c8Pqf}3J
From: Hrvoje Niksic <hniksic@srce.hr>
Date: 24 Jun 1997 00:39:22 +0200
In-Reply-To: Gary.Foster@Corp.Sun.COM's message of "23 Jun 1997 15:25:21 -0700"
Message-ID: <kiglo41eyg5.fsf@jagor.srce.hr>
Lines: 27
X-Mailer: Gnus v5.4.59/XEmacs 20.3(beta8) - "Copenhagen"

Gary.Foster@Corp.Sun.COM (Gary D. Foster) writes:

> +;;; The Bookmarks menu
> +
> +(defun bookmark-menu-filter (menu-items)
> +  "*Build the bookmark jump submenu dynamically from all defined bookmarks."
> +  (if (bookmark-all-names)
> +      (mapcar
> +       #'(lambda (bmk)
> +	   (vector bmk `(bookmark-jump ',bmk) t)) (bookmark-all-names))
> +    (list "No Bookmarks Set")))
> +
> +(defun bookmark-delete-filter (menu-items)
> +  "*Build the bookmark delete submenu dynamically from all defined bookmarks."
> +  (if (bookmark-all-names)
> +      (mapcar
> +       #'(lambda (bmk)
> +	   (vector bmk `(bookmark-delete ',bmk) t)) (bookmark-all-names))
> +    (list "No Bookmarks Set")))
>

I think these two functions should go to bookmark.el, shouldn't they?

-- 
Hrvoje Niksic <hniksic@srce.hr> | Student at FER Zagreb, Croatia
--------------------------------+--------------------------------
Ask not for whom the <CONTROL-G> tolls.

