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
5 changes: 2 additions & 3 deletions explain-pause-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -578,10 +578,9 @@ the width cannot be 0."
(let* ((display-order-ptr (cdr (explain-pause-top--table-entries table)))
(display-entries-prev (explain-pause-top--table-display-entries table))
(display-entries-ptr (cdr display-entries-prev))
(display-column-widths (explain-pause-top--table-column-widths table))
(column-count (length display-column-widths))
(requested-widths (copy-sequence
(explain-pause-top--table-header-widths table)))
(column-count (length requested-widths))
(layout-changed nil)
(current-diffs (make-vector column-count nil)))

Expand Down Expand Up @@ -629,7 +628,7 @@ the width cannot be 0."
;; changed. If so, we'll force `draw` to draw full lines:
;; (TODO could we only paint things "after" the first change?)
(when (or
(cl-mismatch display-column-widths
(cl-mismatch (explain-pause-top--table-column-widths table)
requested-widths
:start1 1
:start2 1
Expand Down