aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward M. Reingold1998-10-26 21:37:57 +0000
committerEdward M. Reingold1998-10-26 21:37:57 +0000
commit4a7cd65c8be1779beb0d10414a4cc75b2e215cb6 (patch)
tree00049653999824c6d2fd593f2371ae1f9b3a77b1
parent024ced4d91b605bb2dc984a9b097cc0d9405f04d (diff)
downloademacs-4a7cd65c8be1779beb0d10414a4cc75b2e215cb6.tar.gz
emacs-4a7cd65c8be1779beb0d10414a4cc75b2e215cb6.zip
Add title parameters to frames.
-rw-r--r--lisp/calendar/cal-x.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/calendar/cal-x.el b/lisp/calendar/cal-x.el
index 7921a270be4..a52933d67f0 100644
--- a/lisp/calendar/cal-x.el
+++ b/lisp/calendar/cal-x.el
@@ -47,19 +47,20 @@
47;; Certainly it should not specify auto-lower and auto-raise 47;; Certainly it should not specify auto-lower and auto-raise
48;; since most users won't like that. 48;; since most users won't like that.
49(defvar diary-frame-parameters 49(defvar diary-frame-parameters
50 '((name . "Diary") (height . 10) (width . 80) (unsplittable . t) 50 '((name . "Diary") (title . "Diary") (height . 10) (width . 80)
51 (minibuffer . nil)) 51 (unsplittable . t) (minibuffer . nil))
52 "Parameters of the diary frame, if the diary is in its own frame. 52 "Parameters of the diary frame, if the diary is in its own frame.
53Location and color should be set in .Xdefaults.") 53Location and color should be set in .Xdefaults.")
54 54
55(defvar calendar-frame-parameters 55(defvar calendar-frame-parameters
56 '((name . "Calendar") (minibuffer . nil) (height . 10) (width . 80) 56 '((name . "Calendar") (title . "Calendar") (minibuffer . nil)
57 (unsplittable . t) (vertical-scroll-bars . nil)) 57 (height . 10) (width . 80) (unsplittable . t) (vertical-scroll-bars . nil))
58 "Parameters of the calendar frame, if the calendar is in a separate frame. 58 "Parameters of the calendar frame, if the calendar is in a separate frame.
59Location and color should be set in .Xdefaults.") 59Location and color should be set in .Xdefaults.")
60 60
61(defvar calendar-and-diary-frame-parameters 61(defvar calendar-and-diary-frame-parameters
62 '((name . "Calendar") (height . 28) (width . 80) (minibuffer . nil)) 62 '((name . "Calendar") (title . "Calendar") (height . 28) (width . 80)
63 (minibuffer . nil))
63 "Parameters of the frame that displays both the calendar and the diary. 64 "Parameters of the frame that displays both the calendar and the diary.
64Location and color should be set in .Xdefaults.") 65Location and color should be set in .Xdefaults.")
65 66