Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
58ae51ae
Commit
58ae51ae
authored
Oct 10, 2009
by
Glenn Morris
Browse files
(calendar-split-width-threshold): New option.
(calendar-basic-setup): Use calendar-split-width-threshold.
parent
d751f122
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/calendar/calendar.el
lisp/calendar/calendar.el
+11
-0
No files found.
lisp/ChangeLog
View file @
58ae51ae
2009-10-10 Glenn Morris <rgm@gnu.org>
* calendar/calendar.el (calendar-split-width-threshold): New option.
(calendar-basic-setup): Use calendar-split-width-threshold.
2009-10-10 Sascha Wilde <wilde@sha-bang.de>
* cedet/ede/proj-shared.el (ede-proj-makefile-target-name): Use
...
...
lisp/calendar/calendar.el
View file @
58ae51ae
...
...
@@ -163,6 +163,16 @@ three options overrides the value of `calendar-view-diary-initially-flag'."
:version
"22.1"
:group
'calendar
)
;; See discussion in bug#1806.
(
defcustom
calendar-split-width-threshold
nil
"Value to use for `split-width-threshold' when creating a calendar.
This only affects frames wider than the default value of
`split-width-threshold'."
:type
'
(
choice
(
const
nil
)
(
integer
))
:version
"23.2"
:group
'calendar
)
(
defcustom
calendar-week-start-day
0
"The day of the week on which a week in the calendar begins.
0 means Sunday (default), 1 means Monday, and so on.
...
...
@@ -1287,6 +1297,7 @@ display the generated calendar."
;; Not really needed now, but means we use exactly the same
;; behavior as before in the non-wide case (see below).
(
split-height-threshold
1000
)
(
split-width-threshold
calendar-split-width-threshold
)
(
date
(
if
arg
(
calendar-read-date
t
)
(
calendar-current-date
)))
(
month
(
calendar-extract-month
date
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment