We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd67378 commit e9249c9Copy full SHA for e9249c9
src/display/physical-line.lisp
@@ -86,8 +86,9 @@
86
(extend-to-eol-object-color drawing-object-2)))
87
88
(defmethod drawing-object-equal ((drawing-object-1 line-end-object) (drawing-object-2 line-end-object))
89
- (equal (line-end-object-offset drawing-object-1)
90
- (line-end-object-offset drawing-object-2)))
+ (and (call-next-method)
+ (equal (line-end-object-offset drawing-object-1)
91
+ (line-end-object-offset drawing-object-2))))
92
93
(defmethod drawing-object-equal ((drawing-object-1 image-object) (drawing-object-2 image-object))
94
nil)
0 commit comments