From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: [PATCH] Fix CUSTOM_ID completion for PROPERTY drawers Date: Sun, 19 Apr 2009 12:29:03 -0400 Message-ID: <1240158544-8214-1-git-send-email-bernt@norang.ca> Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LvZtN-00012O-Ue for emacs-orgmode@gnu.org; Sun, 19 Apr 2009 12:29:17 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LvZtK-0000yq-9u for emacs-orgmode@gnu.org; Sun, 19 Apr 2009 12:29:17 -0400 Received: from [199.232.76.173] (port=50376 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LvZtK-0000yg-3Q for emacs-orgmode@gnu.org; Sun, 19 Apr 2009 12:29:14 -0400 Received: from mho-01-ewr.mailhop.org ([204.13.248.71]:51034) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LvZtJ-0006d7-Po for emacs-orgmode@gnu.org; Sun, 19 Apr 2009 12:29:13 -0400 Received: from cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com ([99.239.148.180] helo=mail.norang.ca) by mho-01-ewr.mailhop.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1LvZtG-000Bn4-P4 for emacs-orgmode@gnu.org; Sun, 19 Apr 2009 16:29:10 +0000 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: emacs-orgmode@gnu.org Cc: Bernt Hansen The wrong name was added for CUSTOM_ID in the completion list for properties in commit 931e13d (Custom IDs: Documentation and improvements) --- This patch is available at git://git.norang.ca/org-mode for-carsten lisp/org.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 3c95baa..41e0e48 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -11148,7 +11148,7 @@ These are properties that are not defined in the property drawer, but in some other way.") (defconst org-default-properties - '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_LINK" + '("ARCHIVE" "CATEGORY" "SUMMARY" "DESCRIPTION" "CUSTOM_ID" "LOCATION" "LOGGING" "COLUMNS" "VISIBILITY" "TABLE_EXPORT_FORMAT" "TABLE_EXPORT_FILE" "EXPORT_FILE_NAME" "EXPORT_TITLE" "EXPORT_AUTHOR" "EXPORT_DATE" -- 1.6.3.rc1