diff options
| author | Karl Heuer | 1996-01-29 23:18:20 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-29 23:18:20 +0000 |
| commit | ea0bb97f77cf7d6b1153732b27a1b5449af2a380 (patch) | |
| tree | 3857890623f60c6bfaca06fe1152c504e88ef937 | |
| parent | 76e4c0ba3fb709e3ef8b58959325d42ee387d8bf (diff) | |
| download | emacs-ea0bb97f77cf7d6b1153732b27a1b5449af2a380.tar.gz emacs-ea0bb97f77cf7d6b1153732b27a1b5449af2a380.zip | |
(nntp-send-strings-to-server, nntp-async-send-strings): Fix error format string.
| -rw-r--r-- | lisp/nntp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/nntp.el b/lisp/nntp.el index f3c0b7a0eb7..4577fe52585 100644 --- a/lisp/nntp.el +++ b/lisp/nntp.el | |||
| @@ -1014,7 +1014,7 @@ It will prompt for a password." | |||
| 1014 | ;; We open the nntp server if it is down. | 1014 | ;; We open the nntp server if it is down. |
| 1015 | (or (nntp-server-opened nntp-current-server) | 1015 | (or (nntp-server-opened nntp-current-server) |
| 1016 | (nntp-open-server nntp-current-server) | 1016 | (nntp-open-server nntp-current-server) |
| 1017 | (error (nntp-status-message))) | 1017 | (error "%s" (nntp-status-message))) |
| 1018 | ;; Send the strings. | 1018 | ;; Send the strings. |
| 1019 | (process-send-string nntp-server-process cmd))) | 1019 | (process-send-string nntp-server-process cmd))) |
| 1020 | 1020 | ||
| @@ -1260,7 +1260,7 @@ defining this function as macro." | |||
| 1260 | (let ((cmd (concat (mapconcat 'identity strings " ") "\r\n"))) | 1260 | (let ((cmd (concat (mapconcat 'identity strings " ") "\r\n"))) |
| 1261 | (or (nntp-async-server-opened) | 1261 | (or (nntp-async-server-opened) |
| 1262 | (nntp-async-open-server) | 1262 | (nntp-async-open-server) |
| 1263 | (error (nntp-status-message))) | 1263 | (error "%s" (nntp-status-message))) |
| 1264 | (process-send-string nntp-async-process cmd))) | 1264 | (process-send-string nntp-async-process cmd))) |
| 1265 | 1265 | ||
| 1266 | (defun nntp-async-request-group (group) | 1266 | (defun nntp-async-request-group (group) |