]> git.eshelyaron.com Git - emacs.git/commitdiff
(gulp-send-requests): Call sort properly.
authorRichard M. Stallman <rms@gnu.org>
Tue, 3 Mar 1998 01:57:04 +0000 (01:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 3 Mar 1998 01:57:04 +0000 (01:57 +0000)
When showing the message, put point at beginning of buffer.

lisp/emacs-lisp/gulp.el

index f4149adc3e252da25dfdee8cbdb20bc41596002f..e84c1056296080eb5ac60bd15c06dcd14d375fc8 100644 (file)
@@ -83,9 +83,9 @@ is left in the `*gulp*' buffer at the end."
          (buffer-undo-list t)
          mail-setup-hook msg node)
       (setq m-p-alist
-           (sort (function (lambda (a b)
-                             (string< (car (car a)) (car (car b)))))
-                 m-p-alist))
+           (sort m-p-alist
+                 (function (lambda (a b)
+                             (string< (car a) (car b))))))
       (while (setq node (car m-p-alist))
        (setq msg (gulp-create-message (cdr node) time))
        (setq mail-setup-hook
@@ -95,6 +95,7 @@ is left in the `*gulp*' buffer at the end."
                 (goto-char (point-max))
                 (insert msg)))
        (mail nil (car node))
+       (goto-char (point-min))
        (if (y-or-n-p "Send? ") (mail-send)
          (kill-this-buffer)
          (set-buffer gulp-tmp-buffer)