From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Tool-bar separators and :visible etc Date: Sat, 04 Feb 2012 22:13:10 -0500 Message-ID: <42r4ya55x5.fsf@fencepost.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1328411602 19570 80.91.229.3 (5 Feb 2012 03:13:22 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 5 Feb 2012 03:13:22 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Feb 05 04:13:18 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1RtsXT-0003FJ-Dk for ged-emacs-devel@m.gmane.org; Sun, 05 Feb 2012 04:13:15 +0100 Original-Received: from localhost ([::1]:58459 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RtsXS-0008Qu-DL for ged-emacs-devel@m.gmane.org; Sat, 04 Feb 2012 22:13:14 -0500 Original-Received: from eggs.gnu.org ([140.186.70.92]:47804) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RtsXP-0008QX-Lj for emacs-devel@gnu.org; Sat, 04 Feb 2012 22:13:12 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RtsXO-0002ah-La for emacs-devel@gnu.org; Sat, 04 Feb 2012 22:13:11 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]:46612) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RtsXO-0002ac-Ip for emacs-devel@gnu.org; Sat, 04 Feb 2012 22:13:10 -0500 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1RtsXO-0002Is-9G; Sat, 04 Feb 2012 22:13:10 -0500 X-Spook: monarchist JUWTF CDMA domestic disruption CipherTAC-2000 X-Ran: qPq(K"]dnOgb2;C0{N1?(0RHq65$6nYn_ErM&_Qy~})[AvIQ$x\q$;YwDmwjs5HG^Dg}h? X-Hue: white X-Attribution: GM User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.10 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:148175 Archived-At: I'm trying to document the NEWS entry: "Tool-bars can display separators." This works (after hiding and showing the tool-bar): (define-key-after tool-bar-map [sep1] '("--")) so does this: (define-key-after tool-bar-map [sep1] '(menu-item "--")) This doesn't: (define-key-after tool-bar-map [sep1] '(menu-item "--" nil :visible t)) although it does in a menu-bar: (define-key-after menu-bar-help-menu [sep1] '(menu-item "--" nil :visible t)) So, it seems that tool-bar separator items do not support specifiers like :visible, :help, etc. Is that correct?