]> git.eshelyaron.com Git - emacs.git/commitdiff
Nix more uses of default-FOO variables (Bug#24946)
authorMark Oteiza <mvoteiza@udel.edu>
Tue, 15 Nov 2016 18:31:31 +0000 (13:31 -0500)
committerMark Oteiza <mvoteiza@udel.edu>
Tue, 15 Nov 2016 18:35:07 +0000 (13:35 -0500)
* 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.

lisp/cedet/semantic/util-modes.el
lisp/emulation/viper.el
lisp/mail/feedmail.el

index 6b80c96173ccbcfe3beb60f02d43d8116bcdd5c1..4f7f0518dbf1cd6f1280895bd73a61d895b1bb4f 100644 (file)
@@ -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"))
index 04a7c22e787dfecbd7b9873e0dcebf7bb0c7b731..c5dac55522a41fe30557b54660f4908af46f5cff 100644 (file)
@@ -1234,7 +1234,7 @@ These two lines must come in the order given."))
 (if (null viper-saved-non-viper-variables)
     (setq viper-saved-non-viper-variables
          (list
-          (cons 'default-major-mode (list (default-value 'major-mode)))
+          (cons 'major-mode (list (default-value 'major-mode)))
           (cons 'next-line-add-newlines (list next-line-add-newlines))
           (cons 'require-final-newline (list require-final-newline))
           (cons 'scroll-step (list scroll-step))
index bb93cff96bc39a5a5402192e953f016ef5328bed..eed664d088e2590bd11502d5bda81ace833142ce 100644 (file)
@@ -504,7 +504,7 @@ as-is.  The filling is done after mail address alias expansion."
   )
 
 
-(defcustom feedmail-fill-to-cc-fill-column default-fill-column
+(defcustom feedmail-fill-to-cc-fill-column (default-value 'fill-column)
   "Fill column used by `feedmail-fill-to-cc'."
   :group 'feedmail-headers
   :type 'integer