From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.devel Subject: Re: [Emacs-diffs] master e73b0d6: Implement unprettification of symbol at point Date: Thu, 01 Oct 2015 16:30:28 +0200 Message-ID: <87mvw2hda3.fsf@gnu.org> References: <20150930103122.19329.40243@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1443719588 16198 80.91.229.3 (1 Oct 2015 17:13:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 1 Oct 2015 17:13:08 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Oct 01 19:12:58 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZhhPa-0004Xv-Iw for ged-emacs-devel@m.gmane.org; Thu, 01 Oct 2015 19:12:54 +0200 Original-Received: from localhost ([::1]:53742 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhhPZ-0000cy-Sx for ged-emacs-devel@m.gmane.org; Thu, 01 Oct 2015 13:12:53 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:53223) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhesV-0008Bv-IQ for emacs-devel@gnu.org; Thu, 01 Oct 2015 10:30:39 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZhesR-0000yp-Ia for emacs-devel@gnu.org; Thu, 01 Oct 2015 10:30:35 -0400 Original-Received: from deliver.uni-koblenz.de ([141.26.64.15]:37773) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZhesR-0000uj-Cb for emacs-devel@gnu.org; Thu, 01 Oct 2015 10:30:31 -0400 Original-Received: from thinkpad-t440p (dhcp145.uni-koblenz.de [141.26.71.145]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by deliver.uni-koblenz.de (Postfix) with ESMTPSA id A166B1A8376; Thu, 1 Oct 2015 16:30:28 +0200 (CEST) Mail-Followup-To: Stefan Monnier , emacs-devel@gnu.org In-Reply-To: (Stefan Monnier's message of "Thu, 01 Oct 2015 10:14:37 -0400") User-Agent: Gnus/5.130014 (Ma Gnus v0.14) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 141.26.64.15 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:190565 Archived-At: Stefan Monnier writes: >> +(defcustom prettify-symbols-unprettify-at-point t > > Not sure how representative I am, but at least this user here much > prefers a setting of nil. Which is the default now after Mark Oteiza also complained. :-) >> + :type 'boolean >> + :group 'prog-mode) > > The :group arg is redundant. Oh, indeed, I've just read: ,----[ (info "(elisp)Variable Definitions") ] | If a =E2=80=98defcustom=E2=80=99 does not specify any =E2=80=98:grou= p=E2=80=99, the last group | defined with =E2=80=98defgroup=E2=80=99 in the same file will be use= d. This way, | most =E2=80=98defcustom=E2=80=99 do not need an explicit =E2=80=98:g= roup=E2=80=99. `---- Is that new? Looking at other files, I can hardly find any occurrence of a `defcustom' without :group. Even `prog-mode-hook' which immediately follows the group definition for prog-mode has it. Bye, Tassilo