diff options
author | Kyle Meyer <kyle@kyleam.com> | 2021-11-27 16:24:31 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2021-11-27 16:25:09 -0500 |
commit | b8b2dd17c57b73357cae229e010138fd2352a46f (patch) | |
tree | 758aab91d32661bd1009dc0e346cf883b5ddc81e /lisp/org/org-table.el | |
parent | a937f536b35351842756bac939f21ae5f937fa61 (diff) | |
download | emacs-b8b2dd17c57b73357cae229e010138fd2352a46f.tar.gz emacs-b8b2dd17c57b73357cae229e010138fd2352a46f.tar.bz2 emacs-b8b2dd17c57b73357cae229e010138fd2352a46f.zip |
Update to Org 9.5.1-11-g96d91b
Diffstat (limited to 'lisp/org/org-table.el')
-rw-r--r-- | lisp/org/org-table.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/org-table.el b/lisp/org/org-table.el index 89c57fb06ce..e34872fb491 100644 --- a/lisp/org/org-table.el +++ b/lisp/org/org-table.el @@ -4436,7 +4436,7 @@ Optional argument NEW may specify text to replace the current field content." (col (org-table-current-column))) (when (> col 0) (skip-chars-backward "^|") - (if (not (looking-at " *\\([^|\n]*?\\) *\\(|\\|$\\)")) + (if (not (looking-at " *\\(?:\\([^|\n]*?\\) *\\(|\\)\\|\\([^|\n]+?\\) *\\($\\)\\)")) (setq org-table-may-need-update t) (let* ((align (nth (1- col) org-table-last-alignment)) (width (nth (1- col) org-table-last-column-widths)) |