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
0836e2c3
Commit
0836e2c3
authored
Nov 24, 2008
by
Martin Rudalics
Browse files
(appt-disp-window): Do a set-buffer when the
frame can't be split.
parent
a59c6c51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/calendar/appt.el
lisp/calendar/appt.el
+3
-1
No files found.
lisp/ChangeLog
View file @
0836e2c3
2008-11-24 Martin Rudalics <rudalics@gmx.at>
* calendar/appt.el (appt-disp-window): Do a set-buffer when the
frame can't be split.
2008-11-24 Ulf Jasper <ulf@web.de>
* net/newst-treeview.el (newsticker--treeview-current-feed): Doc
...
...
lisp/calendar/appt.el
View file @
0836e2c3
...
...
@@ -417,7 +417,9 @@ message APPT-MSG in a separate buffer."
(and (minibufferp) (display-multi-frame-p) (other-frame 1)))
(if (cdr (assq 'unsplittable (frame-parameters)))
;; In an unsplittable frame, use something somewhere else.
(display-buffer appt-disp-buf)
(progn
(set-buffer appt-disp-buf)
(display-buffer appt-disp-buf))
(unless (or (special-display-p (buffer-name appt-disp-buf))
(same-window-p (buffer-name appt-disp-buf)))
;; By default, split the bottom window and use the lower part.
...
...
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