0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 23:17:49 +00:00

Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2020-04-19 00:04:27 +02:00
commit 0d1d56f86a

View file

@ -15450,7 +15450,10 @@ looks only before point, not after."
(catch 'exit
(let ((pos (point))
(dodollar (member "$" (plist-get org-format-latex-options :matchers)))
(lim (save-excursion (org-backward-paragraph) (point)))
(lim (progn
(re-search-backward (concat "^\\(" paragraph-start "\\)") nil
'move)
(point)))
dd-on str (start 0) m re)
(goto-char pos)
(when dodollar