diff options
author | Glenn Morris <rgm@gnu.org> | 2013-08-13 00:42:51 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-08-13 00:42:51 -0700 |
commit | f0024d8c0dbe5dcb2551bf2433af39ffe7cb8f7a (patch) | |
tree | 325046b1f3fb9cffa88ac99ce51a16eb5edc0c76 /lisp/emulation/viper-init.el | |
parent | ae3f0661b3baf53dec77c14b9b54530094f09904 (diff) | |
download | emacs-f0024d8c0dbe5dcb2551bf2433af39ffe7cb8f7a.tar.gz emacs-f0024d8c0dbe5dcb2551bf2433af39ffe7cb8f7a.tar.bz2 emacs-f0024d8c0dbe5dcb2551bf2433af39ffe7cb8f7a.zip |
Fix some custom types
* lisp/cus-start.el (truncate-partial-width-windows): Fix type.
* lisp/emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
* lisp/mail/feedmail.el (feedmail-confirm-outgoing)
(feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
* admin/admin.el: Related comments.
Diffstat (limited to 'lisp/emulation/viper-init.el')
-rw-r--r-- | lisp/emulation/viper-init.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/viper-init.el b/lisp/emulation/viper-init.el index 76d4632f8c0..aa90344d195 100644 --- a/lisp/emulation/viper-init.el +++ b/lisp/emulation/viper-init.el @@ -690,7 +690,7 @@ to a new place after repeating previous Vi command." the window will be scrolled up or down appropriately, to reveal context. If you want Viper search to behave as usual in Vi, set this variable to a negative number." - :type 'boolean + :type 'integer :group 'viper-search) (defcustom viper-re-query-replace t |