comparison lisp/gnus/nntp.el @ 49598:0d8b17d428b5

Trailing whitepace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 13:24:35 +0000
parents 55e0120deff6
children f13275d94b11
comparison
equal deleted inserted replaced
49597:e88404e8f2cf 49598:0d8b17d428b5
348 (nntp-async-wait process wait-for buffer decode callback) 348 (nntp-async-wait process wait-for buffer decode callback)
349 t) 349 t)
350 (wait-for 350 (wait-for
351 (nntp-wait-for process wait-for buffer decode)) 351 (nntp-wait-for process wait-for buffer decode))
352 (t t))) 352 (t t)))
353 (error 353 (error
354 (nnheader-report 'nntp "Couldn't open connection to %s: %s" 354 (nnheader-report 'nntp "Couldn't open connection to %s: %s"
355 address err)) 355 address err))
356 (quit 356 (quit
357 (message "Quit retrieving data from nntp") 357 (message "Quit retrieving data from nntp")
358 (signal 'quit nil) 358 (signal 'quit nil)
359 nil))))) 359 nil)))))
1177 (setq articles (cdr articles))) 1177 (setq articles (cdr articles)))
1178 1178
1179 (setq in-process-buffer-p (stringp nntp-server-xover)) 1179 (setq in-process-buffer-p (stringp nntp-server-xover))
1180 (nntp-send-xover-command first (car articles)) 1180 (nntp-send-xover-command first (car articles))
1181 (setq articles (cdr articles)) 1181 (setq articles (cdr articles))
1182 1182
1183 (when (and nntp-server-xover in-process-buffer-p) 1183 (when (and nntp-server-xover in-process-buffer-p)
1184 ;; Don't count tried request. 1184 ;; Don't count tried request.
1185 (setq count (1+ count)) 1185 (setq count (1+ count))
1186 1186
1187 ;; Every 400 requests we have to read the stream in 1187 ;; Every 400 requests we have to read the stream in
1188 ;; order to avoid deadlocks. 1188 ;; order to avoid deadlocks.
1189 (when (or (null articles) ;All requests have been sent. 1189 (when (or (null articles) ;All requests have been sent.
1190 (zerop (% count nntp-maximum-request))) 1190 (zerop (% count nntp-maximum-request)))
1191 1191