diff options
| author | Mark Oteiza | 2016-11-15 13:31:31 -0500 |
|---|---|---|
| committer | Mark Oteiza | 2016-11-15 13:35:07 -0500 |
| commit | e6681b27394a23979c3aef3925f78ef9cd75bd32 (patch) | |
| tree | a008c2641d8b61f29bc03b70830b21601c6d6426 /lisp/emulation | |
| parent | 4e2ef64449ce5dc91e2d533c0fbaaf50b0e92f3b (diff) | |
| download | emacs-e6681b27394a23979c3aef3925f78ef9cd75bd32.tar.gz emacs-e6681b27394a23979c3aef3925f78ef9cd75bd32.zip | |
Nix more uses of default-FOO variables (Bug#24946)
* lisp/cedet/semantic/util-modes.el (semantic-stickyfunc-mode):
Check for header-line-format instead.
* lisp/emulation/viper.el (viper-load-custom-file): Reference
major-mode instead.
* lisp-mail-feedmail.el (feedmail-fill-to-cc-fill-column): Use
fill-column instead.
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/viper.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el index 04a7c22e787..c5dac55522a 100644 --- a/lisp/emulation/viper.el +++ b/lisp/emulation/viper.el | |||
| @@ -1234,7 +1234,7 @@ These two lines must come in the order given.")) | |||
| 1234 | (if (null viper-saved-non-viper-variables) | 1234 | (if (null viper-saved-non-viper-variables) |
| 1235 | (setq viper-saved-non-viper-variables | 1235 | (setq viper-saved-non-viper-variables |
| 1236 | (list | 1236 | (list |
| 1237 | (cons 'default-major-mode (list (default-value 'major-mode))) | 1237 | (cons 'major-mode (list (default-value 'major-mode))) |
| 1238 | (cons 'next-line-add-newlines (list next-line-add-newlines)) | 1238 | (cons 'next-line-add-newlines (list next-line-add-newlines)) |
| 1239 | (cons 'require-final-newline (list require-final-newline)) | 1239 | (cons 'require-final-newline (list require-final-newline)) |
| 1240 | (cons 'scroll-step (list scroll-step)) | 1240 | (cons 'scroll-step (list scroll-step)) |