+2008-04-12 Reiner Steib <Reiner.Steib@gmx.de>
+
+ * ediff-wind.el (ediff-split-window-function)
+ (ediff-merge-split-window-function): Improve custom type.
+
2008-04-12 Eli Zaretskii <eliz@gnu.org>
* loadup.el ("minibuffer"): Move after "faces".
You can also have your own function to do fancy splits.
This variable has no effect when buffer-A/B are shown in different frames.
In this case, Ediff will use those frames to display these buffers."
- :type 'function
+ :type '(choice
+ (const :tag "Split vertically" split-window-vertically)
+ (const :tag "Split horizontally" split-window-horizontally)
+ function)
:group 'ediff-window)
(defcustom ediff-merge-split-window-function 'split-window-horizontally
You can also have your own function to do fancy splits.
This variable has no effect when buffer-A/B/C are shown in different frames.
In this case, Ediff will use those frames to display these buffers."
- :type 'function
+ :type '(choice
+ (const :tag "Split vertically" split-window-vertically)
+ (const :tag "Split horizontally" split-window-horizontally)
+ function)
:group 'ediff-window)
;; Definitions hidden from the compiler by compat wrappers.