diff options
| author | Glenn Morris | 2006-11-11 04:04:21 +0000 |
|---|---|---|
| committer | Glenn Morris | 2006-11-11 04:04:21 +0000 |
| commit | 64948f0f1630fe680c8ef3dbdb780f93b84131b3 (patch) | |
| tree | 2be978377fd31fe39de2c1cdafcf63153c81cbd1 | |
| parent | 0404f77e70af63fe1b79a127884d31a6eb8d280a (diff) | |
| download | emacs-64948f0f1630fe680c8ef3dbdb780f93b84131b3.tar.gz emacs-64948f0f1630fe680c8ef3dbdb780f93b84131b3.zip | |
(org-export-with-timestamps)
(org-export-remove-timestamps-from-toc)
(org-export-with-tags): Improve previous doc fixes.
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | lisp/textmodes/org.el | 8 |
2 files changed, 18 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 84c6be5af25..6b5f109f36f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2006-11-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * ido.el (ido-enable-prefix) | ||
| 4 | * ses.el (ses-call-printer-return) | ||
| 5 | * net/tramp.el (tramp-unified-filenames) | ||
| 6 | * progmodes/cc-align.el (c-lineup-string-cont) | ||
| 7 | * progmodes/compile.el (compilation-directory-matcher) | ||
| 8 | * progmodes/ebnf2ps.el (ebnf-stop-on-error) | ||
| 9 | * progmodes/vhdl-mode.el (vhdl-reset-active-high) | ||
| 10 | (vhdl-clock-rising-edge) | ||
| 11 | * textmodes/org.el (org-export-with-timestamps) | ||
| 12 | (org-export-remove-timestamps-from-toc) | ||
| 13 | (org-export-with-tags): Improve previous doc fixes. | ||
| 14 | |||
| 1 | 2006-11-11 Richard Stallman <rms@gnu.org> | 15 | 2006-11-11 Richard Stallman <rms@gnu.org> |
| 2 | 16 | ||
| 3 | * textmodes/flyspell.el (flyspell-mode-map): | 17 | * textmodes/flyspell.el (flyspell-mode-map): |
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el index d0103683ede..dd4cd2e71b2 100644 --- a/lisp/textmodes/org.el +++ b/lisp/textmodes/org.el | |||
| @@ -2147,18 +2147,18 @@ 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 | "If nil, 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 | "If nil, 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 | "If nil, do not export tags, just remove them from headlines. |
| 2161 | If this is the sysmbol `not-in-toc', tags will be removed from table of | 2161 | If this is the symbol `not-in-toc', tags will be removed from table of |
| 2162 | contents entries, but still be shown in the headlines of the document." | 2162 | contents entries, but still be shown in the headlines of the document." |
| 2163 | :group 'org-export-general | 2163 | :group 'org-export-general |
| 2164 | :type '(choice | 2164 | :type '(choice |