Synch with Oort Gnus.
authoryamaoka <yamaoka>
Wed, 18 Sep 2002 22:42:24 +0000 (22:42 +0000)
committeryamaoka <yamaoka>
Wed, 18 Sep 2002 22:42:24 +0000 (22:42 +0000)
lisp/ChangeLog
lisp/gnus-art.el
lisp/gnus-int.el
lisp/gnus-msg.el
lisp/imap.el

index 99418b5..4ab8102 100644 (file)
@@ -1,5 +1,16 @@
+2002-09-18  Juanma Barranquero  <lektu@terra.es>
+
+       * gnus-int.el (gnus-status-message): Fix spacing.
+       
+       * imap.el (imap-continuation): Fix typos.
+
 2002-09-18  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
+       * gnus-msg.el (gnus-configure-posting-styles): Sort results.
+
+       * gnus-art.el (gnus-article-reply-with-original): Correct
+       with-current-buffer scope.
+
        * message.el (message-completion-alist): Add Reply-To, From, etc.
 
 2002-09-18  Simon Josefsson  <jas@extundo.com>
 
        * mml2015.el (mml2015-fix-micalg): Alg might be nil.
 
-2000-12-01  Christopher Splinter  <chris@splinter.inka.de>
+2000-12-01  ShengHuo ZHU  <zsh@cs.rochester.edu>
+       Trivial patch from Christopher Splinter  <chris@splinter.inka.de>
 
        * gnus-sum.el (gnus-summary-limit-to-age): Fix typo.
 
index 6f13913..9950d27 100644 (file)
@@ -47,8 +47,7 @@
   (require 'mail-parse)
   (require 'mm-decode)
   (require 'mm-view)
-  (require 'mm-uu)
-  )
+  (require 'mm-uu))
 
 (autoload 'gnus-msg-mail "gnus-msg" nil t)
 (autoload 'gnus-button-mailto "gnus-msg")
@@ -5216,12 +5215,12 @@ the entire article will be yanked."
     (if (not (mark t))
        (with-current-buffer gnus-summary-buffer
          (gnus-summary-reply (list (list article)) wide))
+      (setq cont (buffer-substring (point) (mark t)))
+      ;; Deactivate active regions.
+      (when (and (boundp 'transient-mark-mode)
+                transient-mark-mode)
+       (setq mark-active nil))
       (with-current-buffer gnus-summary-buffer
-       (setq cont (buffer-substring (point) (mark t)))
-       ;; Deactivate active regions.
-       (when (and (boundp 'transient-mark-mode)
-                  transient-mark-mode)
-         (setq mark-active nil))
        (gnus-summary-reply
         (list (list article cont)) wide)))))
 
index fc8fc33..d8c466c 100644 (file)
@@ -263,7 +263,7 @@ If it is down, start it up (again)."
 
 (defun gnus-status-message (gnus-command-method)
   "Return the status message from GNUS-COMMAND-METHOD.
-If GNUS-COMMAND-METHOD is a string, it is interpreted as a group name.   The method
+If GNUS-COMMAND-METHOD is a string, it is interpreted as a group name.  The method
 this group uses will be queried."
   (let ((gnus-command-method
         (if (stringp gnus-command-method)
index f30e99a..f0e80ac 100644 (file)
@@ -1965,6 +1965,8 @@ this is a reply."
       (setq results (delq name (delq address results)))
       ;; make-local-hook is not obsolete in Emacs 20 or XEmacs.
       (make-local-hook 'message-setup-hook)
+      (setq results (sort results (lambda (x y) 
+                                   (string-lessp (car x) (car y)))))
       (dolist (result results)
        (add-hook 'message-setup-hook
                  (cond
index 4871c08..00204de 100644 (file)
@@ -387,7 +387,7 @@ human readable response text (a string).")
 
 (defvar imap-continuation nil
   "Non-nil indicates that the server emitted a continuation request.
-The actually value is really the text on the continuation line.")
+The actual value is really the text on the continuation line.")
 
 (defvar imap-callbacks nil
   "List of response tags and callbacks, on the form `(number . function)'.