From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scot Becker Subject: Bug: org-feed customization group is called org-id (can't customize org-id) Date: Tue, 14 Sep 2010 21:25:15 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from [140.186.70.92] (port=47222 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ovc4Q-0004VR-9k for emacs-orgmode@gnu.org; Tue, 14 Sep 2010 16:25:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Ovc4P-0007xh-7S for emacs-orgmode@gnu.org; Tue, 14 Sep 2010 16:25:38 -0400 Received: from mail-bw0-f41.google.com ([209.85.214.41]:46190) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ovc4P-0007xN-35 for emacs-orgmode@gnu.org; Tue, 14 Sep 2010 16:25:37 -0400 Received: by bwz10 with SMTP id 10so630911bwz.0 for ; Tue, 14 Sep 2010 13:25:35 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org-mode ml In org-feed.el (line 105), the 'defgroup' entry for org-feed has the tag "Org ID", which is the same tag as the group org-id (in 'org-id.el'). This has the result that you are unable to get to the real org-ID variables from the M-x customize-group RET org RET top level menu. The culprit: (defgroup org-feed nil "Options concerning RSS feeds as inputs for Org files." :tag "Org ID" :group 'org) Scot