aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail
diff options
context:
space:
mode:
authorSam Steingold2001-11-27 15:52:52 +0000
committerSam Steingold2001-11-27 15:52:52 +0000
commit8a9463543d5b82409a24e23905d271cdebf70059 (patch)
tree503c81c7058491327cc13ab0eff04ed5dc6dd855 /lisp/mail
parentc6aedc9284492c790448cce23b0e5cc134885148 (diff)
downloademacs-8a9463543d5b82409a24e23905d271cdebf70059.tar.gz
emacs-8a9463543d5b82409a24e23905d271cdebf70059.zip
Converted backquote to the new style.
Diffstat (limited to 'lisp/mail')
-rw-r--r--lisp/mail/feedmail.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el
index a5679073064..8a69ae7802d 100644
--- a/lisp/mail/feedmail.el
+++ b/lisp/mail/feedmail.el
@@ -291,16 +291,16 @@
291;; If you write software that must work without the new custom, you 291;; If you write software that must work without the new custom, you
292;; can use this hack stolen from w3-cus.el: 292;; can use this hack stolen from w3-cus.el:
293(eval-and-compile 293(eval-and-compile
294 (condition-case () 294 (condition-case ()
295 (require 'custom) 295 (require 'custom)
296 (error nil)) 296 (error nil))
297 (if (and (featurep 'custom) (fboundp 'custom-declare-variable)) 297 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
298 nil ;; We've got what we needed 298 nil ;; We've got what we needed
299 ;; We have the old custom-library, hack around it! 299 ;; We have the old custom-library, hack around it!
300 (defmacro defgroup (&rest args) 300 (defmacro defgroup (&rest args)
301 nil) 301 nil)
302 (defmacro defcustom (var value doc &rest args) 302 (defmacro defcustom (var value doc &rest args)
303 (` (defvar (, var) (, value) (, doc)))))) 303 `(defvar ,var ,value ,doc))))
304 304
305(eval-when-compile (require 'smtpmail)) 305(eval-when-compile (require 'smtpmail))
306(autoload 'mail-do-fcc "sendmail") 306(autoload 'mail-do-fcc "sendmail")