Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lisp/ghostel-kitty.el
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ user shouldn't have to trigger one)."
(img (create-image data (if is-png 'png 'pbm) t
:width (* g-cols cw)
:height (* g-rows ch)
:scale 1
:ascent 'center))
(skip (max 0 abs-row))
(start-row (max 0 (- abs-row)))
Expand Down Expand Up @@ -267,6 +268,7 @@ DATA is a unibyte string (PNG or PPM). IS-PNG is non-nil for PNG."
(setq img (create-image data (if is-png 'png 'pbm) t
:width (* grid-cols cw)
:height (* grid-rows ch)
:scale 1
:ascent 'center))
;; Second pass: apply per-row slices on placeholder regions.
;; Walks line by line — `line-end-position' is O(1) with no
Expand Down
Loading