summaryrefslogtreecommitdiff
path: root/lisp/calendar/cal-tex.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-03-15 21:32:14 +0000
committerGlenn Morris <rgm@gnu.org>2009-03-15 21:32:14 +0000
commita20013c1bb67802139d3035e388ae052f34214bc (patch)
treeaed1eb5a8646c2ac296ff07d996cc36912002d46 /lisp/calendar/cal-tex.el
parent64fc5f5a404a1a797c994e7b64fd796dcfda538b (diff)
(cal-tex-preamble-extra): Add an example string value to help people
with the formatting.
Diffstat (limited to 'lisp/calendar/cal-tex.el')
-rw-r--r--lisp/calendar/cal-tex.el4
1 files changed, 3 insertions, 1 deletions
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'"
"A string giving extra LaTeX commands to insert in the calendar preamble.
For example, to include extra packages:
\"\\\\usepackage{foo}\\n\\\\usepackage{bar}\\n\"."
- :type '(choice (const nil) string)
+ :type '(choice (const nil)
+ ;; An example to help people format things in custom.
+ (string :value "\\usepackage{foo}\n\\usepackage{bar}\n"))
:group 'calendar-tex
:version "22.1")