# HG changeset patch # User Carsten Dominik # Date 1233913333 0 # Node ID 20072969284da27c2e2135d8fa656cc2b5f41f0f # Parent 6babeadc07c9947c27ef6562b2ba342c97e90728 2009-02-06 Carsten Dominik * org.el (org-format-latex): Stop LaTeX fragment processing in protected examples. diff -r 6babeadc07c9 -r 20072969284d lisp/org/ChangeLog --- a/lisp/org/ChangeLog Fri Feb 06 07:33:20 2009 +0000 +++ b/lisp/org/ChangeLog Fri Feb 06 09:42:13 2009 +0000 @@ -1,3 +1,8 @@ +2009-02-06 Carsten Dominik + + * org.el (org-format-latex): Stop LaTeX fragment processing in + protected examples. + 2009-02-05 Glenn Morris * org-rmail.el (rmail-show-message): Update declaration. diff -r 6babeadc07c9 -r 20072969284d lisp/org/org.el --- a/lisp/org/org.el Fri Feb 06 07:33:20 2009 +0000 +++ b/lisp/org/org.el Fri Feb 06 09:42:13 2009 +0000 @@ -12709,7 +12709,9 @@ (when (member m matchers) (goto-char (point-min)) (while (re-search-forward re nil t) - (when (or (not at) (equal (cdr at) (match-beginning n))) + (when (and (or (not at) (equal (cdr at) (match-beginning n))) + (not (get-text-property (match-beginning n) + 'org-protected))) (setq txt (match-string n) beg (match-beginning n) end (match-end n) cnt (1+ cnt)