Merge branch 'maint'

This commit is contained in:
Nicolas Goaziou 2020-04-19 00:04:27 +02:00
commit 0d1d56f86a
1 changed files with 4 additions and 1 deletions

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