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: indented meta-info in describe-variable Date: Wed, 10 Oct 2007 10:49:36 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1192006193 20095 80.91.229.12 (10 Oct 2007 08:49:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 10 Oct 2007 08:49:53 +0000 (UTC) Cc: Emacs development discussions To: "Stefan Monnier" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 10 10:49:52 2007 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 1IfXGH-0004gP-HZ for ged-emacs-devel@m.gmane.org; Wed, 10 Oct 2007 10:49:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IfXGB-0000Zu-NY for ged-emacs-devel@m.gmane.org; Wed, 10 Oct 2007 04:49:43 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IfXG7-0000Zp-LC for emacs-devel@gnu.org; Wed, 10 Oct 2007 04:49:39 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IfXG5-0000Zd-Qu for emacs-devel@gnu.org; Wed, 10 Oct 2007 04:49:38 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IfXG5-0000Za-JI for emacs-devel@gnu.org; Wed, 10 Oct 2007 04:49:37 -0400 Original-Received: from wx-out-0506.google.com ([66.249.82.238]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IfXG5-0006nl-B2 for emacs-devel@gnu.org; Wed, 10 Oct 2007 04:49:37 -0400 Original-Received: by wx-out-0506.google.com with SMTP id s7so129326wxc for ; Wed, 10 Oct 2007 01:49:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=VX3Bw+Qi0GjmSSQwQG6pvXSrakJRqhdcz5YiXsM73Hk=; b=tcQl5rf0KZLamp/m0OsKI17DnH+Crq43fUcqo7yNJc8plgTcOA6C/JATxfJ5ow9hQcKYcliz5F1coIp1Pt5g0QRXU1rNd4t8pfmAHbZTd0aUWei5eHFR40YYhTVYOLt+Z2AJ9evGVIdRSF6pdoxaZPvlm8g7YlK3VLdm4wjTzXs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=HS0+Hb+TuchLbEqFV+g17W+UkphJrNNuCVBSxrp8f/gRf+6d9SyhGS/tjIUTlT6pyV7a1KrnwfRwgPakbsGnHs7vZJy+ToakGTwRXjmOf6Mzk219v2pY4GjD0qUM1N1FmWd9x6EMamx2Y9Tlq2eCrmabPCFAAyqNM1aF15uEK7g= Original-Received: by 10.90.119.15 with SMTP id r15mr772193agc.1192006176459; Wed, 10 Oct 2007 01:49:36 -0700 (PDT) Original-Received: by 10.90.103.8 with HTTP; Wed, 10 Oct 2007 01:49:36 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-Detected-Kernel: 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:80499 Archived-At: Is this difference in whitespace intended? (defvar test nil "test") (make-variable-buffer-local 'test) and then: ------------------------------------------------------------ test's value is nil Automatically becomes buffer-local when set in any fashion. Documentation: test ------------------------------------------------------------ test's value is t Local in buffer *scratch*; global value is nil Automatically becomes buffer-local when set in any fashion. Documentation: test ------------------------------------------------------------ Juanma