aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2006-11-10 09:13:32 +0000
committerGlenn Morris2006-11-10 09:13:32 +0000
commit802fbcaa0c9ace7ac7373cd715b7dcdd45408d61 (patch)
treeb8a1ab0b89c8ee68a46153e14ffc4bc05844dcbe /lisp
parent227ae83dede818cac967b68c3afff353f9d12ca4 (diff)
downloademacs-802fbcaa0c9ace7ac7373cd715b7dcdd45408d61.tar.gz
emacs-802fbcaa0c9ace7ac7373cd715b7dcdd45408d61.zip
(org-export-with-timestamps)
(org-export-remove-timestamps-from-toc, org-export-with-tags) (org-read-date): Doc fix (Nil -> nil).
Diffstat (limited to 'lisp')
-rw-r--r--lisp/textmodes/org.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index 2470326b604..d0103683ede 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -2147,17 +2147,17 @@ headline Only export the headline, but skip the tree below it."
2147 (const :tag "entirely" t))) 2147 (const :tag "entirely" t)))
2148 2148
2149(defcustom org-export-with-timestamps t 2149(defcustom org-export-with-timestamps t
2150 "Nil means, do not export time stamps and associated keywords." 2150 "nil means, do not export time stamps and associated keywords."
2151 :group 'org-export-general 2151 :group 'org-export-general
2152 :type 'boolean) 2152 :type 'boolean)
2153 2153
2154(defcustom org-export-remove-timestamps-from-toc t 2154(defcustom org-export-remove-timestamps-from-toc t
2155 "Nil means, remove timestamps from the table of contents entries." 2155 "nil means, remove timestamps from the table of contents entries."
2156 :group 'org-export-general 2156 :group 'org-export-general
2157 :type 'boolean) 2157 :type 'boolean)
2158 2158
2159(defcustom org-export-with-tags 'not-in-toc 2159(defcustom org-export-with-tags 'not-in-toc
2160 "Nil means, do not export tags, just remove them from headlines. 2160 "nil means, do not export tags, just remove them from headlines.
2161If this is the sysmbol `not-in-toc', tags will be removed from table of 2161If this is the sysmbol `not-in-toc', tags will be removed from table of
2162contents entries, but still be shown in the headlines of the document." 2162contents entries, but still be shown in the headlines of the document."
2163 :group 'org-export-general 2163 :group 'org-export-general
@@ -5960,7 +5960,7 @@ While prompting, a calendar is popped up - you can also select the
5960date with the mouse (button 1). The calendar shows a period of three 5960date with the mouse (button 1). The calendar shows a period of three
5961months. To scroll it to other months, use the keys `>' and `<'. 5961months. To scroll it to other months, use the keys `>' and `<'.
5962If you don't like the calendar, turn it off with 5962If you don't like the calendar, turn it off with
5963 \(setq org-popup-calendar-for-date-prompt Nil) 5963 \(setq org-popup-calendar-for-date-prompt nil)
5964 5964
5965With optional argument TO-TIME, the date will immediately be converted 5965With optional argument TO-TIME, the date will immediately be converted
5966to an internal time. 5966to an internal time.