Mercurial > emacs
changeset 82203:3d0d3af343ac
(calendar-mode): Make sure displayed-(month|year) are set.
(calendar-basic-setup): Display buffer before adjusting window sizes.
(generate-calendar-window): Use inhibit-read-only. Simplify.
Generate buffer and set displayed-month and displayed-year before
calling update-calendar-mode-line.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 29 Jul 2007 20:49:13 +0000 |
parents | 2cd425573329 |
children | 8608982353b2 |
files | lisp/ChangeLog lisp/calendar/calendar.el |
diffstat | 2 files changed, 23 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Jul 29 20:44:22 2007 +0000 +++ b/lisp/ChangeLog Sun Jul 29 20:49:13 2007 +0000 @@ -1,3 +1,12 @@ +2007-07-29 Stefan Monnier <monnier@iro.umontreal.ca> + + * calendar/calendar.el (calendar-mode): Make sure + displayed-(month|year) are set. + (calendar-basic-setup): Display buffer before adjusting window sizes. + (generate-calendar-window): Use inhibit-read-only. Simplify. + Generate buffer and set displayed-month and displayed-year before + calling update-calendar-mode-line. + 2007-07-29 Michael Albinus <michael.albinus@gmx.de> * tramp.el: @@ -10,8 +19,8 @@ * tramp-gw.el: * tramp-smb.el: Remove coding cookie. - * tramp.el (tramp-handle-verify-visited-file-modtime): Flush - buffer file-name's file property. + * tramp.el (tramp-handle-verify-visited-file-modtime): + Flush buffer file-name's file property. (tramp-handle-file-remote-p): The first parameter is FILENAME. * trampver.el: Update release number.
--- a/lisp/calendar/calendar.el Sun Jul 29 20:44:22 2007 +0000 +++ b/lisp/calendar/calendar.el Sun Jul 29 20:49:13 2007 +0000 @@ -1678,10 +1678,10 @@ ;; not a legal date for the visible test in the diary section. (if arg (setcar (cdr date) 1)) (increment-calendar-month month year (- calendar-offset)) + ;; Display the buffer before calling generate-calendar-window so that it + ;; can get a chance to adjust the window sizes to the frame size. + (pop-to-buffer calendar-buffer) (generate-calendar-window month year) - ;; Display the buffer *after* generating it, so that menu entries that - ;; use display-month do not fail when creating the new frame. - (pop-to-buffer calendar-buffer) (if (and view-diary-entries-initially (calendar-date-is-visible-p date)) (diary-view-entries))) (let* ((diary-buffer (get-file-buffer diary-file)) @@ -2060,7 +2060,7 @@ (defun generate-calendar-window (&optional mon yr) "Generate the calendar window for the current date. Or, for optional MON, YR." - (let* ((buffer-read-only nil) + (let* ((inhibit-read-only t) (today (calendar-current-date)) (month (extract-calendar-month today)) (day (extract-calendar-day today)) @@ -2072,10 +2072,8 @@ (day-in-week (calendar-day-of-week today)) (in-calendar-window (eq (window-buffer (selected-window)) (get-buffer calendar-buffer)))) + (generate-calendar (or mon month) (or yr year)) (update-calendar-mode-line) - (if mon - (generate-calendar mon yr) - (generate-calendar month year)) (calendar-cursor-to-visible-date (if today-visible today (list displayed-month 1 displayed-year))) (set-buffer-modified-p nil) @@ -2475,8 +2473,13 @@ (setq indent-tabs-mode nil) (update-calendar-mode-line) (make-local-variable 'calendar-mark-ring) - (make-local-variable 'displayed-month);; Month in middle of window. - (make-local-variable 'displayed-year) ;; Year in middle of window. + (make-local-variable 'displayed-month) ;; Month in middle of window. + (make-local-variable 'displayed-year) ;; Year in middle of window. + ;; Most functions only work if displayed-month and displayed-year are set, + ;; so let's make sure they're always set. Most likely, this will be reset + ;; soon in generate-calendar, but better safe than sorry. + (unless (boundp 'displayed-month) (setq displayed-month 1)) + (unless (boundp 'displayed-year) (setq displayed-year 2001)) (set (make-local-variable 'font-lock-defaults) '(calendar-font-lock-keywords t)) (run-mode-hooks 'calendar-mode-hook))