Skip to content

Commit

Permalink
Fix bug with om-dash-table-squeeze-empty
Browse files Browse the repository at this point in the history
  • Loading branch information
gavv committed Dec 3, 2024
1 parent 0389b89 commit 8e1009d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion om-dash.el
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ You can use it so specify cell font."
(seq-map (lambda (row)
(seq-remove-at-position row col-num))
rows))
(when (eq stretch-col col-num)
(when (>= stretch-col col-num)
(setq stretch-col (1- stretch-col))))))))
;; adjust column widths to fit contents
(dolist (row rows)
Expand Down

0 comments on commit 8e1009d

Please sign in to comment.