aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1992-05-06 03:42:36 +0000
committerRichard M. Stallman1992-05-06 03:42:36 +0000
commitbc98c79cb71b16f5f1a934927d41c9af9ccb2d62 (patch)
tree1d2065d640d3f84615e03b1354971e889dfb0077
parentb5e86cb3e106e129f997fcbdbd7329b3f9ce2138 (diff)
downloademacs-bc98c79cb71b16f5f1a934927d41c9af9ccb2d62.tar.gz
emacs-bc98c79cb71b16f5f1a934927d41c9af9ccb2d62.zip
*** empty log message ***
-rw-r--r--lisp/ftp.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/ftp.el b/lisp/ftp.el
index 919a1d809b1..44655357ac3 100644
--- a/lisp/ftp.el
+++ b/lisp/ftp.el
@@ -252,6 +252,9 @@ USER and PASSWORD are defaulted from the values used when
252 ((looking-at ignore) 252 ((looking-at ignore)
253 ;; Ignore status messages whose codes indicate no problem. 253 ;; Ignore status messages whose codes indicate no problem.
254 (forward-line 1)) 254 (forward-line 1))
255 ((looking-at "^[^0-9]")
256 ;; Ignore any lines that don't have status codes.
257 (forward-line 1))
255 ((not (search-forward "\n" nil t)) 258 ((not (search-forward "\n" nil t))
256 ;; the way asynchronous process-output works with (point) 259 ;; the way asynchronous process-output works with (point)
257 ;; is really really disgusting. 260 ;; is really really disgusting.
@@ -260,9 +263,6 @@ USER and PASSWORD are defaulted from the values used when
260 (accept-process-output process) 263 (accept-process-output process)
261 (error nil)) 264 (error nil))
262 (goto-char p)) 265 (goto-char p))
263 ((looking-at "^[a-z]")
264 ;; Ignore any lines that don't have error codes.
265 (forward-line 1))
266 (t 266 (t
267 (setq p nil)))) 267 (setq p nil))))
268 p)) 268 p))