aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-04-27 08:38:11 +0000
committerRichard M. Stallman1994-04-27 08:38:11 +0000
commitc00f638dbb94cb24fb102d201793841e035eb7c2 (patch)
treec4bfe001b20931c4f4314fbe2635cc89f2e3cb6a
parentf9c3b81ade450d6bbd8e38c838b2ff56ee289639 (diff)
downloademacs-c00f638dbb94cb24fb102d201793841e035eb7c2.tar.gz
emacs-c00f638dbb94cb24fb102d201793841e035eb7c2.zip
(calendar-starred-day): Var renamed from starred-day.
-rw-r--r--lisp/calendar/calendar.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el
index c2c02d91b95..0e6450b671a 100644
--- a/lisp/calendar/calendar.el
+++ b/lisp/calendar/calendar.el
@@ -1986,7 +1986,7 @@ ERROR is t, otherwise just returns nil."
1986 (save-excursion 1986 (save-excursion
1987 (re-search-backward "[^*]") 1987 (re-search-backward "[^*]")
1988 (looking-at ".\\*\\*"))) 1988 (looking-at ".\\*\\*")))
1989 (list month starred-day year) 1989 (list month calendar-starred-day year)
1990 (if error (error "Cursor is not on a date!")))))) 1990 (if error (error "Cursor is not on a date!"))))))
1991 1991
1992(defun calendar-cursor-to-nearest-date () 1992(defun calendar-cursor-to-nearest-date ()
@@ -2574,9 +2574,9 @@ MARK defaults to diary-entry-marker."
2574This function can be used with the today-visible-calendar-hook run after the 2574This function can be used with the today-visible-calendar-hook run after the
2575calendar window has been prepared." 2575calendar window has been prepared."
2576 (let ((buffer-read-only nil)) 2576 (let ((buffer-read-only nil))
2577 (make-variable-buffer-local 'starred-day) 2577 (make-variable-buffer-local 'calendar-starred-day)
2578 (forward-char 1) 2578 (forward-char 1)
2579 (setq starred-day 2579 (setq calendar-starred-day
2580 (string-to-int 2580 (string-to-int
2581 (buffer-substring (point) (- (point) 2)))) 2581 (buffer-substring (point) (- (point) 2))))
2582 (delete-char -2) 2582 (delete-char -2)