diff options
| author | Glenn Morris | 2009-03-15 21:32:14 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-03-15 21:32:14 +0000 |
| commit | a20013c1bb67802139d3035e388ae052f34214bc (patch) | |
| tree | aed1eb5a8646c2ac296ff07d996cc36912002d46 | |
| parent | 64fc5f5a404a1a797c994e7b64fd796dcfda538b (diff) | |
| download | emacs-a20013c1bb67802139d3035e388ae052f34214bc.tar.gz emacs-a20013c1bb67802139d3035e388ae052f34214bc.zip | |
(cal-tex-preamble-extra): Add an example string value to help people
with the formatting.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/calendar/cal-tex.el | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d9a3375ec25..3c0bdbc20c0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2009-03-15 Glenn Morris <rgm@gnu.org> | 1 | 2009-03-15 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * calendar/cal-tex.el (cal-tex-preamble-extra): Add an example string | ||
| 4 | value to help people with the formatting. | ||
| 5 | |||
| 3 | * mail/sendmail.el (mail-yank-prefix): Doc fix. | 6 | * mail/sendmail.el (mail-yank-prefix): Doc fix. |
| 4 | (mail-mode-map): Only enable the "Cite Original" menu-item when | 7 | (mail-mode-map): Only enable the "Cite Original" menu-item when |
| 5 | appropriate. Standardize the text used for other headers re hyphens. | 8 | appropriate. Standardize the text used for other headers re hyphens. |
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el index c89a295f333..829844b3ec1 100644 --- a/lisp/calendar/cal-tex.el +++ b/lisp/calendar/cal-tex.el | |||
| @@ -142,7 +142,9 @@ At present, this only affects `cal-tex-cursor-day'" | |||
| 142 | "A string giving extra LaTeX commands to insert in the calendar preamble. | 142 | "A string giving extra LaTeX commands to insert in the calendar preamble. |
| 143 | For example, to include extra packages: | 143 | For example, to include extra packages: |
| 144 | \"\\\\usepackage{foo}\\n\\\\usepackage{bar}\\n\"." | 144 | \"\\\\usepackage{foo}\\n\\\\usepackage{bar}\\n\"." |
| 145 | :type '(choice (const nil) string) | 145 | :type '(choice (const nil) |
| 146 | ;; An example to help people format things in custom. | ||
| 147 | (string :value "\\usepackage{foo}\n\\usepackage{bar}\n")) | ||
| 146 | :group 'calendar-tex | 148 | :group 'calendar-tex |
| 147 | :version "22.1") | 149 | :version "22.1") |
| 148 | 150 | ||