mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2025-01-19 19:07:43 +00:00
Fix bug with exporting table metalines to LaTeX/PDF
* lisp/org-exp.el (org-export-handle-table-metalines): Choose a better position for checking protectedness.
This commit is contained in:
parent
8d0735b89e
commit
6aa469b116
@ -1691,7 +1691,7 @@ When it is nil, all comments will be removed."
|
||||
(while (or (looking-at re)
|
||||
(re-search-forward re nil t))
|
||||
(setq pos (match-beginning 0))
|
||||
(if (get-text-property (point) 'org-protected)
|
||||
(if (get-text-property (match-beginning 1) 'org-protected)
|
||||
(goto-char (1+ pos))
|
||||
(goto-char (1+ pos))
|
||||
(replace-match "")
|
||||
|
Loading…
Reference in New Issue
Block a user