Allow viper-save-setting to save numerical settings
* lisp/emulation/viper-util.el (viper-save-setting): Allow saving numerical settings (bug#18928).
This commit is contained in:
parent
f352c57972
commit
1052707230
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ Otherwise return the normal value."
|
|||
(defun viper-save-setting (var message file &optional erase-msg)
|
||||
(let* ((var-name (symbol-name var))
|
||||
(var-val (if (boundp var) (eval var)))
|
||||
(regexp (format "^[^;]*%s[ \t\n]*[a-zA-Z---_']*[ \t\n)]" var-name))
|
||||
(regexp (format "^[^;]*%s[ \t\n]*[a-zA-Z0-9---_']*[ \t\n)]" var-name))
|
||||
(buf (find-file-noselect (substitute-in-file-name file)))
|
||||
)
|
||||
(message "%s" (or message ""))
|
||||
|
|
Loading…
Add table
Reference in a new issue