emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/gnus/pop3.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/gnus/pop3.el
Date: Tue, 07 Dec 2004 17:11:55 -0500

Index: emacs/lisp/gnus/pop3.el
diff -c emacs/lisp/gnus/pop3.el:1.25 emacs/lisp/gnus/pop3.el:1.26
*** emacs/lisp/gnus/pop3.el:1.25        Sun Oct 17 14:29:01 2004
--- emacs/lisp/gnus/pop3.el     Tue Dec  7 21:56:39 2004
***************
*** 348,353 ****
--- 348,369 ----
  
  ;; AUTHORIZATION STATE
  
+ (eval-and-compile
+   (if (fboundp 'md5)
+       (defalias 'pop3-md5 'md5)
+     (defvar pop3-md5-program "md5"
+       "*Program to encode its input in MD5.")
+ 
+     (defun pop3-md5 (string)
+       (with-temp-buffer
+       (insert string)
+       (call-process-region (point-min) (point-max)
+                            pop3-md5-program
+                            t (current-buffer) nil)
+       ;; The meaningful output is the first 32 characters.
+       ;; Don't return the newline that follows them!
+       (buffer-substring (point-min) (+ 32 (point-min)))))))
+ 
  (defun pop3-user (process user)
    "Send USER information to POP3 server."
    (pop3-send-command process (format "USER %s" user))
***************
*** 378,399 ****
  
  ;; TRANSACTION STATE
  
- (eval-and-compile
-   (if (fboundp 'md5)
-       (defalias 'pop3-md5 'md5)
-     (defvar pop3-md5-program "md5"
-       "*Program to encode its input in MD5.")
- 
-     (defun pop3-md5 (string)
-       (with-temp-buffer
-       (insert string)
-       (call-process-region (point-min) (point-max)
-                            pop3-md5-program
-                            t (current-buffer) nil)
-       ;; The meaningful output is the first 32 characters.
-       ;; Don't return the newline that follows them!
-       (buffer-substring (point-min) (+ 32 (point-min)))))))
- 
  (defun pop3-stat (process)
    "Return the number of messages in the maildrop and the maildrop's size."
    (pop3-send-command process "STAT")
--- 394,399 ----




reply via email to

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