From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: make-variable-buffer-local change Date: Fri, 25 Sep 2009 18:57:07 +0200 Message-ID: References: <200909251609.n8PG97YN020225@godzilla.ics.uci.edu> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1253897876 25471 80.91.229.12 (25 Sep 2009 16:57:56 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 25 Sep 2009 16:57:56 +0000 (UTC) Cc: Dan Nicolaescu , emacs-devel@gnu.org To: Lennart Borgman Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 25 18:57:49 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MrE76-0005Qa-JJ for ged-emacs-devel@m.gmane.org; Fri, 25 Sep 2009 18:57:44 +0200 Original-Received: from localhost ([127.0.0.1]:52920 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MrE76-0002IV-2X for ged-emacs-devel@m.gmane.org; Fri, 25 Sep 2009 12:57:44 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MrE6z-0002IK-3j for emacs-devel@gnu.org; Fri, 25 Sep 2009 12:57:37 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MrE6u-0002Hi-Ae for emacs-devel@gnu.org; Fri, 25 Sep 2009 12:57:36 -0400 Original-Received: from [199.232.76.173] (port=57374 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MrE6u-0002He-7d for emacs-devel@gnu.org; Fri, 25 Sep 2009 12:57:32 -0400 Original-Received: from mail-fx0-f205.google.com ([209.85.220.205]:53494) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MrE6t-00047O-LO for emacs-devel@gnu.org; Fri, 25 Sep 2009 12:57:31 -0400 Original-Received: by fxm1 with SMTP id 1so2319765fxm.31 for ; Fri, 25 Sep 2009 09:57:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:cc:content-type; bh=4TDZ0JRIg/25VXIDBdWBZymBf6ifJ1S5njjBrQU+k9s=; b=VIqMYKlBW4IXG8N7H5HRZDdxNUDeMEmkYcKQGhcULXd9d1RV87jybTmvSUlpxG47s8 UrNAC9bCGwijUlp41AwzcsaI5QU45rUpSeuuSwT/nayaL1Y7x7JO8vR1PqRL5axz0xRO dOiq08aKLHIEqTfc3Gm2xu263gDyyDiF876Go= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; b=vFA784Durw/Ch6sL+2ZPL120rAn6YOEk47P2UD/TkrBBDYVTqjhYGUdJKdBk/6Og5e QLP9Ze3iKJFT1GewxUznMKYsLKoz3tIwsmAMirS6kXQ0xRGufc5cE84ldlevYaV4ENFs JGd1jBiyHSNO1IZGoc1T9S/062AHRG4KMzdEM= Original-Received: by 10.239.163.208 with SMTP id q16mr35501hbd.102.1253897848206; Fri, 25 Sep 2009 09:57:28 -0700 (PDT) In-Reply-To: X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:115619 Archived-At: On Fri, Sep 25, 2009 at 18:50, Lennart Borgman wrote: > I am a bit surprised that such a discussion takes place about a > variable that even does not have a doc string... ;-) It does, now: list-buffers-directory is a variable defined in `menu-bar.el'. Its value is nil Automatically becomes buffer-local when set in any fashion. Documentation: String to display in buffer listings for buffers not visiting a file. Dired, shell and other modes use this variable. and, though the docstring is brand new, the variable was already documented in the Emacs Lisp Reference (node 27.4 "Buffer File Name"). Juanma