aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-07-13 17:00:29 +0200
committerLars Ingebrigtsen2019-07-13 17:00:29 +0200
commit82e799f71d454367e71782df1e4b0440681334cb (patch)
treec525f6fd185bd7f909cf13e9900a13dbef98e680
parent5a90307351c4ba578cd7d5e26124d7ab7da3224f (diff)
downloademacs-82e799f71d454367e71782df1e4b0440681334cb.tar.gz
emacs-82e799f71d454367e71782df1e4b0440681334cb.zip
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("")
-rw-r--r--lisp/cus-start.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 4c4d5ebb16d..e1d0bce2ad0 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."
657 :value t) 657 :value t)
658 (const :tag "Fixed column number" 658 (const :tag "Fixed column number"
659 :value 70 659 :value 70
660 :format "%v")) 660 :format "%v")
661 integer "27.1") 661 integer)
662 "27.1")
662 (display-fill-column-indicator-character display-fill-column-indicator 663 (display-fill-column-indicator-character display-fill-column-indicator
663 character "27.1") 664 character "27.1")
664 ;; xfaces.c 665 ;; xfaces.c