From c3cc5e1afec39c342bf63d34c4467f25f079d656 Mon Sep 17 00:00:00 2001 From: ueno Date: Tue, 31 Oct 2000 13:36:42 +0000 Subject: [PATCH] (smtp-read-response): Don't use `push'. --- smtp.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/smtp.el b/smtp.el index ab7a2fc..f55fd28 100644 --- a/smtp.el +++ b/smtp.el @@ -307,9 +307,9 @@ or `smtp-local-domain' correctly.")))))) (goto-char (prog1 smtp-read-point (setq smtp-read-point (point)))) - (when (looking-at "[1-5][0-9][0-9] ") - (setq response-continue nil) - (push (read (point-marker)) response))) + (if (looking-at "[1-5][0-9][0-9] ") + (setq response (cons (read (point-marker)) response) + response-continue nil))) response)) (defun smtp-send-command (process command) -- 1.7.10.4