From 7b72c57e15fa7ffd0e84b1689162a8b48a9cbcbd Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Wed, 2 Feb 2011 16:29:56 +0100 Subject: [PATCH] (org-hidden-keywords): Fix docstring. --- lisp/org.el | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 930c99a50..3e1419242 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -3316,15 +3316,14 @@ lines to the buffer: :type 'boolean) (defcustom org-hidden-keywords nil - "List of keywords that should be hidden when typed in the org buffer. -For example, add #+TITLE to this list in order to make the -document title appear in the buffer without the initial #+TITLE: -keyword." + "List of symbols corresponding to keywords to be hidden the org buffer. +For example, a value '(title) for this list will make the document's title +appear in the buffer without the initial #+TITLE: keyword." :group 'org-appearance :type '(set (const :tag "#+AUTHOR" author) (const :tag "#+DATE" date) (const :tag "#+EMAIL" email) - (const :tag "#+TITLE" title))) + (const :tag "#+TITLE" title))) (defcustom org-fontify-done-headline nil "Non-nil means change the face of a headline if it is marked DONE. -- 2.11.4.GIT