diff options
| author | Lars Ingebrigtsen | 2019-07-13 17:00:29 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-07-13 17:00:29 +0200 |
| commit | 82e799f71d454367e71782df1e4b0440681334cb (patch) | |
| tree | c525f6fd185bd7f909cf13e9900a13dbef98e680 | |
| parent | 5a90307351c4ba578cd7d5e26124d7ab7da3224f (diff) | |
| download | emacs-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.el | 5 |
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 |