emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 06cfaa3: Make gnus/message.el work correctly under


From: Daniel Colascione
Subject: [Emacs-diffs] master 06cfaa3: Make gnus/message.el work correctly under lexical binding
Date: Tue, 8 Nov 2016 20:38:06 +0000 (UTC)

branch: master
commit 06cfaa3dfa1888b55df437a16ced6f718678bc56
Author: Daniel Colascione <address@hidden>
Commit: Daniel Colascione <address@hidden>

    Make gnus/message.el work correctly under lexical binding
    
    * lisp/gnus/message.el (message-send-mail): Rename `arg' to
    `_' to shut up the byte compiler.
    (sha1-maximum-internal-length, smtpmail-smtp-server)
    (smtpmail-smtp-service): add missing defvars
---
 lisp/gnus/message.el |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 8804513..bdf1b15 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -4481,7 +4481,7 @@ This function could be useful in `message-setup-hook'."
 
 (declare-function hashcash-wait-async "hashcash" (&optional buffer))
 
-(defun message-send-mail (&optional arg)
+(defun message-send-mail (&optional _)
   (require 'mail-utils)
   (let* ((tembuf (message-generate-new-buffer-clone-locals " message temp"))
         (case-fold-search nil)
@@ -4638,6 +4638,8 @@ If you always want Gnus to send messages in one piece, set
     (push 'mail message-sent-message-via)))
 
 (defvar sendmail-program)
+(defvar smtpmail-smtp-server)
+(defvar smtpmail-smtp-service)
 (defvar smtpmail-smtp-user)
 
 (defun message-multi-smtp-send-mail ()
@@ -4817,6 +4819,8 @@ command evaluates `message-send-mail-hook' just before 
sending a message."
   (run-hooks 'message-send-mail-hook)
   (mailclient-send-it))
 
+(defvar sha1-maximum-internal-length)
+
 (defun message-canlock-generate ()
   "Return a string that is non-trivial to guess.
 Do not use this for anything important, it is cryptographically weak."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]