From b85d7d383a2d5f332b6981752b3c3d013fdd4e7c Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Fri, 8 Feb 1991 15:00:50 +0000 Subject: [PATCH] Changed to cache the LINE-LENGTH in the stream instead of querying the editor every time. --- hemlock/ts-stream.lisp | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/hemlock/ts-stream.lisp b/hemlock/ts-stream.lisp index da4f50a8f..3b750d5aa 100644 --- a/hemlock/ts-stream.lisp +++ b/hemlock/ts-stream.lisp @@ -30,7 +30,14 @@ (output-buffer (make-string ts-stream-output-buffer-size) :type simple-string) (output-buffer-index 0 :type fixnum) + ;; + ;; The current output character position on the line, returned by the + ;; :CHARPOS method. (char-pos 0) + ;; + ;; The current length of a line of output. Returned by the :LINE-LENGTH + ;; method. + (line-length 80) current-input (input-read-index 0 :type fixnum)) @@ -53,6 +60,15 @@ (setf (ts-stream-char-pos stream) 0)))) nil) +;;; TS-STREAM-SET-LINE-LENGTH -- Internal interface +;;; +;;; This function is called by the editor to indicate that the line-length for +;;; a TS stream should now be Length. +;;; +(defun ts-stream-set-line-length (remote length) + (let ((stream (wire:remote-object-value remote))) + (setf (ts-stream-line-length stream) length))) + ;;; %TS-STREAM-LISTEN --- internal. ;;; ;;; Determine if there is any input available. If we don't think so, process @@ -293,7 +309,4 @@ (:charpos (ts-stream-char-pos stream)) (:line-length - (system:without-interrupts - (system:without-gcing - (wire:remote-value (ts-stream-wire stream) - (ts-buffer-line-length (ts-stream-typescript stream)))))))) + (ts-stream-line-length stream)))) -- GitLab