aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-09-07 03:32:35 +0000
committerStefan Monnier2007-09-07 03:32:35 +0000
commitc8f1ea764e39183369781f158db8df137f807833 (patch)
tree77961c506c0fe541f8a8a49d6a6e3358c76da8a1
parent90ab5c624d57d119dff33a5b9ae65e3b0c661d59 (diff)
downloademacs-c8f1ea764e39183369781f158db8df137f807833.tar.gz
emacs-c8f1ea764e39183369781f158db8df137f807833.zip
(split-window-preferred-function): Add custom info.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/cus-start.el11
2 files changed, 12 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7bc61dd9575..99e7af00446 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12007-09-07 Stefan Monnier <monnier@iro.umontreal.ca> 12007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * cus-start.el (split-window-preferred-function): Add custom info.
4
3 * calendar/holidays.el (holiday-list, calendar-check-holidays) 5 * calendar/holidays.el (holiday-list, calendar-check-holidays)
4 (calendar-mark-holidays, calendar-list-holidays) 6 (calendar-mark-holidays, calendar-list-holidays)
5 (holiday-filter-visible-calendar): New names to clean up namespace. 7 (holiday-filter-visible-calendar): New names to clean up namespace.
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index e2cb65c82c4..dd4a67812ca 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -342,6 +342,15 @@ since it could result in memory overflow and make Emacs crash."
342 (even-window-heights windows boolean) 342 (even-window-heights windows boolean)
343 (next-screen-context-lines windows integer) 343 (next-screen-context-lines windows integer)
344 (split-height-threshold windows integer) 344 (split-height-threshold windows integer)
345 (split-window-preferred-function
346 windows
347 (choice (const :tag "vertically" split-window)
348 ;; FIXME: Add `sensibly' which chooses between
349 ;; vertical or horizontal splits depending on the size
350 ;; and shape of the window.
351 (const :tag "horizontally"
352 (lambda (window)
353 (split-window window nil 'horiz)))))
345 (window-min-height windows integer) 354 (window-min-height windows integer)
346 (window-min-width windows integer) 355 (window-min-width windows integer)
347 (scroll-preserve-screen-position 356 (scroll-preserve-screen-position
@@ -464,5 +473,5 @@ since it could result in memory overflow and make Emacs crash."
464(unless purify-flag 473(unless purify-flag
465 (provide 'cus-start)) 474 (provide 'cus-start))
466 475
467;;; arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60 476;; arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60
468;;; cus-start.el ends here 477;;; cus-start.el ends here