Variable: org-table--separator-space-post

org-table--separator-space-post is a variable defined in org-table.el.gz.

Value

#(" " 0 1 (display (space :relative-width 1.001)))

Documentation

Space used after fields when aligning the table.

This space serves as a segment separator for the purposes of the bidirectional reordering. Note that org-table--separator-space-pre is not eq to org-table--separator-space-post. This is done to prevent Emacs from visually merging spaces in an empty table cell. See bug#45915.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defconst org-table--separator-space-post
  (propertize " " 'display '(space :relative-width 1.001))
  "Space used after fields when aligning the table.
This space serves as a segment separator for the purposes of the
bidirectional reordering.
Note that `org-table--separator-space-pre' is not `eq' to
`org-table--separator-space-post'.  This is done to prevent Emacs from
visually merging spaces in an empty table cell.  See bug#45915.")