emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 82e799f 2/2: Fix display-fill-column-indicator cust


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 82e799f 2/2: Fix display-fill-column-indicator custom spec typo
Date: Sat, 13 Jul 2019 11:03:53 -0400 (EDT)

branch: master
commit 82e799f71d454367e71782df1e4b0440681334cb
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Fix display-fill-column-indicator custom spec typo
    
    * lisp/cus-start.el (standard): Fix typo in
    display-fill-column-indicator custom spec.
    
    Debugger entered--Lisp error: (wrong-type-argument stringp integer)
      string-match("\\([0-9]+\\)\\(\\.\\([0-9]+\\)\\)?" integer)
      customize-version-lessp("25.3" integer)
     [...]
      customize-changed-options("")
---
 lisp/cus-start.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 4c4d5eb..e1d0bce 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -657,8 +657,9 @@ since it could result in memory overflow and make Emacs 
crash."
                                          :value t)
                                   (const :tag "Fixed column number"
                                          :value 70
-                                         :format "%v"))
-                                 integer "27.1")
+                                         :format "%v")
+                                  integer)
+                                 "27.1")
              (display-fill-column-indicator-character 
display-fill-column-indicator
                                  character "27.1")
             ;; xfaces.c



reply via email to

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