mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
Fix two customization types in frame.el
* lisp/frame.el (window-divider-default-bottom-width) (window-divider-default-right-width): Fix customization types.
This commit is contained in:
parent
d5c41e99a2
commit
ea0aabb419
1 changed files with 2 additions and 2 deletions
|
|
@ -2158,7 +2158,7 @@ To adjust bottom dividers for frames individually, use the frame
|
|||
parameter `bottom-divider-width'."
|
||||
:type '(restricted-sexp
|
||||
:tag "Default width of bottom dividers"
|
||||
:match-alternatives (frame-window-divider-width-valid-p))
|
||||
:match-alternatives (window-divider-width-valid-p))
|
||||
:initialize 'custom-initialize-default
|
||||
:set (lambda (symbol value)
|
||||
(set-default symbol value)
|
||||
|
|
@ -2175,7 +2175,7 @@ To adjust right dividers for frames individually, use the frame
|
|||
parameter `right-divider-width'."
|
||||
:type '(restricted-sexp
|
||||
:tag "Default width of right dividers"
|
||||
:match-alternatives (frame-window-divider-width-valid-p))
|
||||
:match-alternatives (window-divider-width-valid-p))
|
||||
:initialize 'custom-initialize-default
|
||||
:set (lambda (symbol value)
|
||||
(set-default symbol value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue