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
c8f1ea76
Commit
c8f1ea76
authored
Sep 07, 2007
by
Stefan Monnier
Browse files
(split-window-preferred-function): Add custom info.
parent
90ab5c62
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
lisp/ChangeLog
lisp/ChangeLog
+2
-0
lisp/cus-start.el
lisp/cus-start.el
+10
-1
No files found.
lisp/ChangeLog
View file @
c8f1ea76
2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
* cus-start.el (split-window-preferred-function): Add custom info.
* calendar/holidays.el (holiday-list, calendar-check-holidays)
(calendar-mark-holidays, calendar-list-holidays)
(holiday-filter-visible-calendar): New names to clean up namespace.
...
...
lisp/cus-start.el
View file @
c8f1ea76
...
...
@@ -342,6 +342,15 @@ since it could result in memory overflow and make Emacs crash."
(even-window-heights windows boolean)
(next-screen-context-lines windows integer)
(split-height-threshold windows integer)
(split-window-preferred-function
windows
(choice (const :tag "
vertically
" split-window)
;; FIXME: Add `sensibly' which chooses between
;; vertical or horizontal splits depending on the size
;; and shape of the window.
(const :tag "
horizontally
"
(lambda (window)
(split-window window nil 'horiz)))))
(window-min-height windows integer)
(window-min-width windows integer)
(scroll-preserve-screen-position
...
...
@@ -464,5 +473,5 @@ since it could result in memory overflow and make Emacs crash."
(
unless
purify-flag
(
provide
'cus-start
))
;;
;
arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60
;; arch-tag: 4502730d-bcb3-4f5e-99a3-a86f2d54af60
;;; cus-start.el ends here
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