summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorMark Oteiza <mvoteiza@udel.edu>2016-11-15 13:31:31 -0500
committerMark Oteiza <mvoteiza@udel.edu>2016-11-15 13:35:07 -0500
commite6681b27394a23979c3aef3925f78ef9cd75bd32 (patch)
treea008c2641d8b61f29bc03b70830b21601c6d6426 /lisp/cedet
parent4e2ef64449ce5dc91e2d533c0fbaaf50b0e92f3b (diff)
downloademacs-e6681b27394a23979c3aef3925f78ef9cd75bd32.tar.gz
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/cedet')
-rw-r--r--lisp/cedet/semantic/util-modes.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/semantic/util-modes.el b/lisp/cedet/semantic/util-modes.el
index 6b80c96173c..4f7f0518dbf 100644
--- a/lisp/cedet/semantic/util-modes.el
+++ b/lisp/cedet/semantic/util-modes.el
@@ -712,7 +712,7 @@ minor mode is enabled."
;; Disable minor mode if semantic stuff not available
(setq semantic-stickyfunc-mode nil)
(error "Buffer %s was not set up for parsing" (buffer-name)))
- (unless (boundp 'default-header-line-format)
+ (unless (boundp 'header-line-format)
;; Disable if there are no header lines to use.
(setq semantic-stickyfunc-mode nil)
(error "Sticky Function mode requires Emacs"))