From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.devel Subject: Re: Customize fringe Date: Sat, 11 May 2002 14:24:40 +0200 Sender: emacs-devel-admin@gnu.org Message-ID: References: <877kmd7bf5.fsf@tc-1-100.kawasaki.gol.ne.jp> <9003-Thu09May2002210730+0300-eliz@is.elta.co.il> <200205091835.g49IZDZ17232@rum.cs.yale.edu> <200205092118.g49LIsR17755@rum.cs.yale.edu> <8632-Sat11May2002131324+0300-eliz@is.elta.co.il> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1021120043 25581 127.0.0.1 (11 May 2002 12:27:23 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 11 May 2002 12:27:23 +0000 (UTC) Cc: Pavel@Janik.cz, emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 176Vy7-0006eU-00 for ; Sat, 11 May 2002 14:27:23 +0200 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 176W7g-0007bo-00 for ; Sat, 11 May 2002 14:37:16 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 176Vxs-0006WM-00; Sat, 11 May 2002 08:27:08 -0400 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net ([217.13.230.178] helo=yxa.extundo.com) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 176Vvv-0006TM-00 for ; Sat, 11 May 2002 08:25:07 -0400 Original-Received: from latte-eth2-dhcp128.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.3/8.12.3) with ESMTP id g4BCP45p023733; Sat, 11 May 2002 14:25:05 +0200 Original-To: Eli Zaretskii In-Reply-To: <8632-Sat11May2002131324+0300-eliz@is.elta.co.il> ("Eli Zaretskii"'s message of "Sat, 11 May 2002 13:13:24 +0300") Mail-Copies-To: nobody Original-Lines: 14 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) Emacs/21.2.50 (i686-pc-linux-gnu) Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:3840 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:3840 "Eli Zaretskii" writes: >> + (lambda () >> + (interactive) >> + (customize-variable 'fringe-mode)) > > I think it's generally best to avoid anonymous lambda expressions in > the menu bar bindings, since they cause "C-h c" and "C-h k" to display > useless information for anyone but Lisp hackers. I agree, altough menu-bar.el is full of similar constructs so doing something else probably makes it more difficult to read the code. The best would be if all anonymous lambda expressions in the file were removed though.