mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00: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
@ -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…
Reference in New Issue
Block a user