emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master ea0aabb: Fix two customization types in frame.el


From: Martin Rudalics
Subject: [Emacs-diffs] master ea0aabb: Fix two customization types in frame.el
Date: Wed, 26 Jul 2017 04:14:56 -0400 (EDT)

branch: master
commit ea0aabb419cbf24d32dfb0f801e08bbf3160196e
Author: Martin Rudalics <address@hidden>
Commit: Martin Rudalics <address@hidden>

    Fix two customization types in frame.el
    
    * lisp/frame.el (window-divider-default-bottom-width)
    (window-divider-default-right-width): Fix customization types.
---
 lisp/frame.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/frame.el b/lisp/frame.el
index 634367e..2a14302 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]