File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 115115 (let* ((spinner)
116116 (timer (start-timer (make-timer
117117 (lambda ()
118- (update-line-spinner spinner)))
118+ (when spinner
119+ (update-line-spinner spinner))))
119120 +loading-interval+
120121 t ))
121122 (overlay (make-overlay-line-endings
Original file line number Diff line number Diff line change 6565 &key (start-point-kind :right-inserting )
6666 (end-point-kind :left-inserting )
6767 (text (alexandria :required-argument :text ))
68- (offset 0 ))
68+ (offset 0 )
69+ temporary)
6970 (make-instance ' overlay-line-endings
7071 :start (copy-point start start-point-kind)
7172 :end (copy-point end end-point-kind)
7273 :attribute attribute
7374 :buffer (point-buffer start)
7475 :text text
75- :offset offset))
76+ :offset offset
77+ :temporary temporary))
7678
7779(defun make-overlay-line (point attribute &key (temporary nil ))
7880 (with-point ((point point))
You can’t perform that action at this time.
0 commit comments