* lisp/progmodes/octave.el (inferior-octave-send-list-and-digest):
accept-process-output within with-local-quit.
(setq inferior-octave-output-string nil
inferior-octave-receive-in-progress t)
(comint-send-string proc string)
- (while inferior-octave-receive-in-progress
- (accept-process-output proc))
+ (while (and inferior-octave-receive-in-progress
+ (with-local-quit
+ (accept-process-output proc))))
(setq list (cdr list)))
(set-process-filter proc filter))))