]> git.eshelyaron.com Git - emacs.git/commitdiff
(increment-calendar-month): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Mon, 31 Mar 2008 07:11:00 +0000 (07:11 +0000)
committerGlenn Morris <rgm@gnu.org>
Mon, 31 Mar 2008 07:11:00 +0000 (07:11 +0000)
(calendar-date-is-visible-p): Doc fix.  Simplify.

lisp/ChangeLog
lisp/calendar/calendar.el

index d8d5d73a1b797edeec61df43769434f10e08ccbb..90ff6ffce9b972b43bcee0e5bc95a0af89ccad29 100644 (file)
@@ -14,6 +14,9 @@
        * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
        in the last fortnight in Julian October.
 
+       * calendar/calendar.el (increment-calendar-month): Doc fix.
+       (calendar-date-is-visible-p): Doc fix.  Simplify.
+
        * calendar/holidays.el (holiday-filter-visible-calendar): Return result
        from dolist.
 
index 743dc33648f0308bc289d6ac14b0903bb759a8db..cd39f1ebbac913721ab4fe133307d6aea9198a16 100644 (file)
@@ -1216,12 +1216,17 @@ with descriptive strings such as
 (defmacro increment-calendar-month (mon yr n)
   "Increment the variables MON and YR by N months.
 Forward if N is positive or backward if N is negative.
-A negative YR is interpreted as BC; -1 being 1 BC, and so on."
+A negative YR is interpreted as BC; -1 being 1 BC, and so on.
+This is only appropriate for calendars with 12 months per year."
   `(let (macro-y)
+     ;; FIXME 12 could be an optional arg, if needed.
      (if (< ,yr 0) (setq ,yr (1+ ,yr))) ; -1 BC -> 0 AD, etc
      (setq macro-y (+ (* ,yr 12) ,mon -1 ,n)
            ,mon (1+ (mod macro-y 12))
            ,yr (/ macro-y 12))
+;;;      (setq macro-y (+ (* ,yr 12) ,mon -1 ,n)
+;;;            ,yr (/ macro-y 12)
+;;;            ,mon (- macro-y (* ,yr 12)))
      (and (< macro-y 0) (> ,mon 1) (setq ,yr (1- ,yr)))
      (if (< ,yr 1) (setq ,yr (1- ,yr))))) ; 0 AD -> -1 BC, etc
 
@@ -1257,6 +1262,7 @@ inclusive.  The standard macro `dotimes' is preferable in most cases."
             ,index (1+ ,index)))
     sum))
 
+;; FIXME bind q to bury-buffer?
 (defmacro calendar-in-read-only-buffer (buffer &rest body)
   "Switch to BUFFER and executes the forms in BODY.
 First creates or erases BUFFER as needed.  Leaves BUFFER read-only,
@@ -2310,11 +2316,12 @@ interpreted as BC; -1 being 1 BC, and so on."
   (redraw-calendar))
 
 (defun calendar-date-is-visible-p (date)
-  "Return t if DATE is valid and is visible in the calendar window."
-  (let ((gap (calendar-interval
-              displayed-month displayed-year
-              (extract-calendar-month date) (extract-calendar-year date))))
-    (and (calendar-date-is-valid-p date) (> 2 gap) (< -2 gap))))
+  "Return non-nil if DATE is valid and is visible in the calendar window."
+  (and (calendar-date-is-valid-p date)
+       (< (abs (calendar-interval
+                displayed-month displayed-year
+                (extract-calendar-month date) (extract-calendar-year date)))
+          2)))
 
 (defun calendar-date-is-valid-p (date)
   "Return t if DATE is a valid date."