From mboxrd@z Thu Jan 1 00:00:00 1970 From: Suvayu Ali Subject: Re: variable names in manual Date: Fri, 26 Apr 2013 09:21:53 +0200 Message-ID: <20130426072153.GC2769@kuru.dyndns-at-home.com> References: <94889.1366933045@greg-minshalls-mbp.local> <877gjp7pbg.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40991) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVcym-0002Pw-3E for emacs-orgmode@gnu.org; Fri, 26 Apr 2013 03:22:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UVcyk-0005Wl-DN for emacs-orgmode@gnu.org; Fri, 26 Apr 2013 03:22:00 -0400 Received: from mail-wi0-x231.google.com ([2a00:1450:400c:c05::231]:55263) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UVcyk-0005Wb-6w for emacs-orgmode@gnu.org; Fri, 26 Apr 2013 03:21:58 -0400 Received: by mail-wi0-f177.google.com with SMTP id hj19so252272wib.10 for ; Fri, 26 Apr 2013 00:21:57 -0700 (PDT) Received: from kuru.dyndns-at-home.com (ip82-139-118-35.lijbrandt.net. [82.139.118.35]) by mx.google.com with ESMTPSA id a9sm1830904wiv.0.2013.04.26.00.21.55 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Fri, 26 Apr 2013 00:21:56 -0700 (PDT) Content-Disposition: inline In-Reply-To: <877gjp7pbg.fsf@bzg.ath.cx> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Bastien, On Fri, Apr 26, 2013 at 08:56:19AM +0200, Bastien wrote: > Hi Greg, > > Greg Minshall writes: > > > but, it means that placing the cursor over the name and hitting C-h v > > doesn't default to that name. (and, i've always found that a convenient > > way to navigate.) > > > > so, just curious is it might make sense to revert to lower case > > names. > > IMHO this rather call for making C-h v (and C-h f) case-non-sensitive. > > Maybe you can fill an Emacs bug for this? M-x report-emacs-bug RET I believe that would be incorrect behaviour. If I'm not mistaken, emacs-lisp variable names are case sensitive. (setq test "lower case" TEST "UPPER CASE") (message "%s, %s" test TEST) The above prints "lower case, UPPER CASE". Cheers, -- Suvayu Open source is the future. It sets us free.