all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug?] org-inside-latex-fragment-p broken?
@ 2017-06-23 10:26 Rasmus
  2017-06-23 11:55 ` Nicolas Goaziou
  0 siblings, 1 reply; 8+ messages in thread
From: Rasmus @ 2017-06-23 10:26 UTC (permalink / raw
  To: emacs-orgmode

Hi,

org-inside-LaTeX-fragment-p seems to assume that a latex-fragment only
exists beyond the first paragraph.  It does fails to predict the fragment
in this simple file

#+begin_src org
foo $x$ bar
test `org-inside-LaTeX-fragment-p' on the "$x$" above.
#+end_src

It seems to be fixed if we replace,

    (lim (progn
		 (re-search-backward (concat "^\\(" paragraph-start "\\)") nil t)
		 (point)))

With

    (lim (save-excursion (backward-paragraph) (point)))

Should I push this?

Thanks,
Rasmus

-- 
You people at the NSA are becoming my new best friends!

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-06-29 13:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-23 10:26 [bug?] org-inside-latex-fragment-p broken? Rasmus
2017-06-23 11:55 ` Nicolas Goaziou
2017-06-23 12:43   ` Rasmus
2017-06-23 13:45     ` Nicolas Goaziou
2017-06-23 16:43       ` Carsten Dominik
2017-06-23 17:06         ` Nicolas Goaziou
2017-06-24 11:13           ` Rasmus
2017-06-29 13:17             ` Nicolas Goaziou

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.