diff options
author | Glenn Morris <rgm@gnu.org> | 2010-08-13 18:56:35 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-08-13 18:56:35 -0700 |
commit | 721dce172ba46f32208e7f0ddf5bfb326094e5a8 (patch) | |
tree | ffef1ec316acd630791a8a2ce7cc7c238b79ba5e /lisp/calendar/diary-lib.el | |
parent | 7d1b9df355b53c9c022105ad7d657a672a0ff293 (diff) | |
download | emacs-721dce172ba46f32208e7f0ddf5bfb326094e5a8.tar.gz |
Minor diary-lib.el fix.
* lisp/calendar/diary-lib.el (diary-header-line-format):
Fit it to the window, not the frame.
Diffstat (limited to 'lisp/calendar/diary-lib.el')
-rw-r--r-- | lisp/calendar/diary-lib.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/diary-lib.el b/lisp/calendar/diary-lib.el index 8fb464aa7e6..fc416d869bb 100644 --- a/lisp/calendar/diary-lib.el +++ b/lisp/calendar/diary-lib.el @@ -383,7 +383,7 @@ The format of the header is specified by `diary-header-line-format'." "Some text is hidden - press \"s\" in calendar \ before edit/copy" "Diary")) - ?\s (frame-width))) + ?\s (window-width))) "Format of the header line displayed by `diary-simple-display'. Only used if `diary-header-line-flag' is non-nil." :group 'diary |