aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/calendar/calendar.el6
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8fc0bece69c..67cb5bd79aa 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -3,6 +3,10 @@
3 * startup.el (command-line-1): Rename -internal-script back to 3 * startup.el (command-line-1): Rename -internal-script back to
4 -scriptload (reverts previous change). 4 -scriptload (reverts previous change).
5 5
6 * calendar/calendar.el (diary-file): Doc fix.
7 (calendar-buffer-list): Return buffers rather than strings (fixes
8 previous change).
9
6 * textmodes/org-irc.el (top-level): CL not required when compiling. 10 * textmodes/org-irc.el (top-level): CL not required when compiling.
7 (org-irc-visit-erc): Replace runtime CL functions. 11 (org-irc-visit-erc): Replace runtime CL functions.
8 12
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index bb0ed3d045c..049d80c45f9 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -335,7 +335,7 @@ with the remainder of the line being the diary entry string for
335that date. MONTH and DAY are one or two digit numbers, YEAR is a 335that date. MONTH and DAY are one or two digit numbers, YEAR is a
336number and may be written in full or abbreviated to the final two 336number and may be written in full or abbreviated to the final two
337digits (if `abbreviated-calendar-year' is non-nil). MONTHNAME 337digits (if `abbreviated-calendar-year' is non-nil). MONTHNAME
338and DAYNAME can be spelt in full (as specified by the variables 338and DAYNAME can be spelled in full (as specified by the variables
339`calendar-month-name-array' and `calendar-day-name-array'), 339`calendar-month-name-array' and `calendar-day-name-array'),
340abbreviated (as specified by `calendar-month-abbrev-array' and 340abbreviated (as specified by `calendar-month-abbrev-array' and
341`calendar-day-abbrev-array') with or without a period, 341`calendar-day-abbrev-array') with or without a period,
@@ -1851,13 +1851,13 @@ the STRINGS are just concatenated and the result truncated."
1851 list)) 1851 list))
1852 1852
1853(defun calendar-buffer-list () 1853(defun calendar-buffer-list ()
1854 "List of all calendar-related buffers." 1854 "List of all calendar-related buffers (as buffers, not strings)."
1855 (let (buffs) 1855 (let (buffs)
1856 (dolist (b (list cal-hebrew-yahrzeit-buffer lunar-phases-buffer 1856 (dolist (b (list cal-hebrew-yahrzeit-buffer lunar-phases-buffer
1857 holiday-buffer fancy-diary-buffer 1857 holiday-buffer fancy-diary-buffer
1858 (get-file-buffer diary-file) 1858 (get-file-buffer diary-file)
1859 calendar-buffer other-calendars-buffer)) 1859 calendar-buffer other-calendars-buffer))
1860 (and b (get-buffer b) 1860 (and b (setq b (get-buffer b))
1861 (push b buffs))) 1861 (push b buffs)))
1862 buffs)) 1862 buffs))
1863 1863