mirror of https://codeberg.org/cage/tinmop/
- fixed a regression that made the program crashs when adding an attachment to a post.
This commit is contained in:
parent
02b96790ac
commit
c361ecc679
|
@ -313,6 +313,9 @@ this exact quantity would go beyond the length or rows or zero."
|
||||||
(push new-row reversed-old-rows))
|
(push new-row reversed-old-rows))
|
||||||
(setf rows (reverse reversed-old-rows)))))
|
(setf rows (reverse reversed-old-rows)))))
|
||||||
|
|
||||||
|
(defmethod append-new-rows ((object row-oriented-widget) (new-rows line))
|
||||||
|
(append-new-rows object (list new-rows)))
|
||||||
|
|
||||||
(defmethod map-rows ((object row-oriented-widget) (function function)
|
(defmethod map-rows ((object row-oriented-widget) (function function)
|
||||||
&key &allow-other-keys)
|
&key &allow-other-keys)
|
||||||
(mapcar function (rows object)))
|
(mapcar function (rows object)))
|
||||||
|
|
Loading…
Reference in New Issue