mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
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("")
This commit is contained in:
parent
5a90307351
commit
82e799f71d
1 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue