From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: showing up twice in customize group, "Org Agenda Match View" Date: Mon, 21 Apr 2014 16:28:05 -0400 Message-ID: <8738h6tokq.fsf@alphaville.bos.redhat.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47119) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WcKpP-0003h9-TO for emacs-orgmode@gnu.org; Mon, 21 Apr 2014 16:28:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WcKpG-000727-UY for emacs-orgmode@gnu.org; Mon, 21 Apr 2014 16:28:35 -0400 Received: from plane.gmane.org ([80.91.229.3]:49589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WcKpG-00071v-O1 for emacs-orgmode@gnu.org; Mon, 21 Apr 2014 16:28:26 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WcKp8-0007nW-Iz for emacs-orgmode@gnu.org; Mon, 21 Apr 2014 22:28:18 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 Apr 2014 22:28:18 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 Apr 2014 22:28:18 +0200 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 Brady Trainor writes: > This shouldn't take any priority I imagine, but I am curious what > causes it. > > If you execute > > M-x customize-group org-agenda RET > > at bottom you will find two appearances of subgroup `Org Agenda Match > View', which I assume is not desired result. > > I think this must somehow result from Emacs' auto-documentation. > > Traveling through describe-function (for the contents > "org-agenda-tags-todo-honor-ignore-options"), I arrive at agenda.el, > and do some grepping. I found this, but I can't see anything wrong > with it's lone appearance, > ____ > / > > (defgroup org-agenda-match-view nil > "Options concerning the general tags/property/todo match agenda view." > :tag "Org Agenda Match View" > :group 'org-agenda) > > \____ > > Maybe I should have been doing some grepping elsewhere, but I'm lazy > to go digging through Emacs source, which is probably in compiled form > on this install (Linux. In my Windows install, default is for the > source to be conveniently (inefficiently?) adjacent to the compiled.). > If you look at the subsequent lines, you'll see that the next group was probably cut-n-pasted from this one and has the wrong tag: ,---- | (defgroup org-agenda-match-view nil | "Options concerning the general tags/property/todo match agenda view." | :tag "Org Agenda Match View" | :group 'org-agenda) | (defgroup org-agenda-search-view nil | "Options concerning the general tags/property/todo match agenda view." | :tag "Org Agenda Match View" | :group 'org-agenda) `---- Nick