emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/calendar/calendar.el,v


From: Glenn Morris
Subject: [Emacs-diffs] Changes to emacs/lisp/calendar/calendar.el,v
Date: Fri, 14 Mar 2008 02:46:18 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       08/03/14 02:46:18

Index: calendar.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/calendar/calendar.el,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -b -r1.222 -r1.223
--- calendar.el 13 Mar 2008 06:27:14 -0000      1.222
+++ calendar.el 14 Mar 2008 02:46:17 -0000      1.223
@@ -335,7 +335,7 @@
 that date.  MONTH and DAY are one or two digit numbers, YEAR is a
 number and may be written in full or abbreviated to the final two
 digits (if `abbreviated-calendar-year' is non-nil).  MONTHNAME
-and DAYNAME can be spelt in full (as specified by the variables
+and DAYNAME can be spelled in full (as specified by the variables
 `calendar-month-name-array' and `calendar-day-name-array'),
 abbreviated (as specified by `calendar-month-abbrev-array' and
 `calendar-day-abbrev-array') with or without a period,
@@ -1851,13 +1851,13 @@
     list))
 
 (defun calendar-buffer-list ()
-  "List of all calendar-related buffers."
+  "List of all calendar-related buffers (as buffers, not strings)."
   (let (buffs)
     (dolist (b (list cal-hebrew-yahrzeit-buffer lunar-phases-buffer
                      holiday-buffer fancy-diary-buffer
                      (get-file-buffer diary-file)
                      calendar-buffer other-calendars-buffer))
-      (and b (get-buffer b)
+      (and b (setq b (get-buffer b))
            (push b buffs)))
     buffs))
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]