aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2016-01-06 18:34:22 -0500
committerGlenn Morris2016-01-06 18:34:22 -0500
commit8702b8c886591e65ad9ade8729f36f02ca393df0 (patch)
treea0777ff59dddbf9fc557916e777977c034e851be
parentc6d3c60f283a9c2071b4db185773a00e53e20a61 (diff)
downloademacs-8702b8c886591e65ad9ade8729f36f02ca393df0.tar.gz
emacs-8702b8c886591e65ad9ade8729f36f02ca393df0.zip
Doc tweaks.
* lisp/calendar/cal-hebrew.el (diary-hebrew-list-entries): * lisp/calendar/cal-iso.el (calendar-iso-to-absolute) (calendar-iso-from-absolute): * lisp/calendar/cal-tex.el (cal-tex-comment): * lisp/calendar/solar.el (calendar-time-display-form): Doc tweaks.
-rw-r--r--lisp/calendar/cal-hebrew.el2
-rw-r--r--lisp/calendar/cal-iso.el4
-rw-r--r--lisp/calendar/cal-tex.el4
-rw-r--r--lisp/calendar/solar.el4
4 files changed, 7 insertions, 7 deletions
diff --git a/lisp/calendar/cal-hebrew.el b/lisp/calendar/cal-hebrew.el
index 8bb1b88ee62..3a3cb0fa853 100644
--- a/lisp/calendar/cal-hebrew.el
+++ b/lisp/calendar/cal-hebrew.el
@@ -595,7 +595,7 @@ Hebrew date diary entries must be prefaced by `diary-hebrew-entry-symbol'
595of the Hebrew calendar entries, except that the Hebrew month 595of the Hebrew calendar entries, except that the Hebrew month
596names cannot be abbreviated. The Hebrew months are numbered 596names cannot be abbreviated. The Hebrew months are numbered
597from 1 to 13 with Nisan being 1, 12 being Adar I and 13 being 597from 1 to 13 with Nisan being 1, 12 being Adar I and 13 being
598Adar II; you must use `Adar I' if you want Adar of a common 598Adar II; you must use \"Adar I\" if you want Adar of a common
599Hebrew year. If a Hebrew date diary entry begins with 599Hebrew year. If a Hebrew date diary entry begins with
600`diary-nonmarking-symbol', the entry will appear in the diary 600`diary-nonmarking-symbol', the entry will appear in the diary
601listing, but will not be marked in the calendar. This function 601listing, but will not be marked in the calendar. This function
diff --git a/lisp/calendar/cal-iso.el b/lisp/calendar/cal-iso.el
index f3cc430590f..2aa95502e58 100644
--- a/lisp/calendar/cal-iso.el
+++ b/lisp/calendar/cal-iso.el
@@ -33,7 +33,7 @@
33 33
34(defun calendar-iso-to-absolute (date) 34(defun calendar-iso-to-absolute (date)
35 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE. 35 "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE.
36The `ISO year' corresponds approximately to the Gregorian year, but 36The \"ISO year\" corresponds approximately to the Gregorian year, but
37weeks start on Monday and end on Sunday. The first week of the ISO year is 37weeks start on Monday and end on Sunday. The first week of the ISO year is
38the first such week in which at least 4 days are in a year. The ISO 38the first such week in which at least 4 days are in a year. The ISO
39commercial DATE has the form (week day year) in which week is in the range 39commercial DATE has the form (week day year) in which week is in the range
@@ -49,7 +49,7 @@ Sunday). The Gregorian date Sunday, December 31, 1 BC is imaginary."
49 49
50;;;###cal-autoload 50;;;###cal-autoload
51(defun calendar-iso-from-absolute (date) 51(defun calendar-iso-from-absolute (date)
52 "Compute the `ISO commercial date' corresponding to the absolute DATE. 52 "Compute the \"ISO commercial date\" corresponding to the absolute DATE.
53The ISO year corresponds approximately to the Gregorian year, but weeks 53The ISO year corresponds approximately to the Gregorian year, but weeks
54start on Monday and end on Sunday. The first week of the ISO year is the 54start on Monday and end on Sunday. The first week of the ISO year is the
55first such week in which at least 4 days are in a year. The ISO commercial 55first such week in which at least 4 days are in a year. The ISO commercial
diff --git a/lisp/calendar/cal-tex.el b/lisp/calendar/cal-tex.el
index e512faef15e..ec399548e77 100644
--- a/lisp/calendar/cal-tex.el
+++ b/lisp/calendar/cal-tex.el
@@ -1710,8 +1710,8 @@ non-nil, means add to end of buffer without erasing current contents."
1710 (cal-tex-cmd "\\hspace*" space)) 1710 (cal-tex-cmd "\\hspace*" space))
1711 1711
1712(defun cal-tex-comment (&optional comment) 1712(defun cal-tex-comment (&optional comment)
1713 "Insert `% ', followed by optional string COMMENT, followed by newline. 1713 "Insert \"% \", followed by optional string COMMENT, followed by newline.
1714COMMENT may contain newlines, which are prefixed by `% ' in the output." 1714COMMENT may contain newlines, which are prefixed by \"% \" in the output."
1715 (insert (format "%% %s\n" 1715 (insert (format "%% %s\n"
1716 (if comment 1716 (if comment
1717 (replace-regexp-in-string "\n" "\n% " comment) 1717 (replace-regexp-in-string "\n" "\n% " comment)
diff --git a/lisp/calendar/solar.el b/lisp/calendar/solar.el
index a2f9d58585a..0a8cd81e1a2 100644
--- a/lisp/calendar/solar.el
+++ b/lisp/calendar/solar.el
@@ -65,10 +65,10 @@ and `am-pm' and `time-zone', both alphabetic strings.
65 65
66For example, the form 66For example, the form
67 67
68 '(24-hours \":\" minutes 68 (24-hours \":\" minutes
69 (if time-zone \" (\") time-zone (if time-zone \")\")) 69 (if time-zone \" (\") time-zone (if time-zone \")\"))
70 70
71would give military-style times like `21:07 (UTC)'." 71would give military-style times like \"21:07 (UTC)\"."
72 :type 'sexp 72 :type 'sexp
73 :group 'calendar) 73 :group 'calendar)
74 74