]> git.eshelyaron.com Git - emacs.git/commitdiff
* mail/smtpmail.el (smtpmail-default-smtp-server): Made into a defcustom again for...
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 6 Jul 2011 21:34:13 +0000 (23:34 +0200)
committerLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 6 Jul 2011 21:34:13 +0000 (23:34 +0200)
lisp/ChangeLog
lisp/mail/smtpmail.el

index b82c58da3ae889d5219679d69860899cb82cacd9..26e8bec79372a9a94fb7776ce6101ea4cae937bf 100644 (file)
@@ -1,5 +1,8 @@
 2011-07-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
+       * mail/smtpmail.el (smtpmail-default-smtp-server): Made into a
+       defcustom again for backwards compatibility.
+
        * simple.el (shell-command-on-region): Fill.
 
        * dired-aux.el (dired-kill-line): Add a doc string.
index 3fd2d9ddf21a293f6c76bfc17dfa0bd668a76058..1b53b47499bf58d2e2c0966813c952d885757bea 100644 (file)
   :group 'mail)
 
 
-(defvar smtpmail-default-smtp-server nil
+(defcustom smtpmail-default-smtp-server nil
   "Specify default SMTP server.
-This only has effect if you specify it before loading the smtpmail library.")
+This only has effect if you specify it before loading the smtpmail library."
+  :type '(choice (const nil) string)
+  :group 'smtpmail)
 
 (defcustom smtpmail-smtp-server
   (or (getenv "SMTPSERVER") smtpmail-default-smtp-server)