]> git.eshelyaron.com Git - emacs.git/commitdiff
(te-process-output): Fix local var misspelling.
authorKarl Heuer <kwzh@gnu.org>
Thu, 4 Jan 1996 23:15:19 +0000 (23:15 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 4 Jan 1996 23:15:19 +0000 (23:15 +0000)
lisp/terminal.el

index 6ca1efd98bab70bd51f2892aff6f5b22af5a1df5..6ce6824281068170f26360bde8574b0c0124c6a8 100644 (file)
@@ -865,9 +865,9 @@ move to start of new line, clear to end of line."
 ;; (A version of the following comment which might be distractingly offensive
 ;; to some readers has been moved to term-nasty.el.)
 ;; unix lacks ITS-style tty control...
-(defun te-process-output (preemptable)
+(defun te-process-output (preemptible)
   ;;>> There seems no good reason to ever disallow preemption
-  (setq preemptable t)
+  (setq preemptible t)
   (catch 'te-process-output
     (let ((buffer-read-only nil)
          (string nil) ostring start char (matchpos nil))
@@ -955,9 +955,9 @@ move to start of new line, clear to end of line."
                                 (?\C-i . te-output-tab))))
                    'te-losing-unix)))
          (te-redisplay-if-necessary 1))
-       (and preemptable
+       (and preemptible
             (input-pending-p)
-            ;; preemptable output!  Oh my!!
+            ;; preemptible output!  Oh my!!
             (throw 'te-process-output t)))))
   ;; We must update window-point in every window displaying our buffer
   (let* ((s (selected-window))