0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-20 00:56:28 +00:00

org-e-latex: Fix an infloop with inline images

* EXPERIMENTAL/org-e-latex.el (org-e-latex-link--inline-image): Fix an
  infloop.
This commit is contained in:
Nicolas Goaziou 2012-01-25 13:18:28 +01:00
parent 1742683e4f
commit c4fad02b06

View file

@ -1319,12 +1319,11 @@ INFO is a plist containing export options."
(t ""))))
;; Now clear ATTR from any special keyword and set a default
;; value if nothing is left.
(if (not attr)
(setq attr "")
(while (string-match "\\(wrap\\|multicolumn\\|float\\|placement=\\S-+\\)"
attr)
(replace-match "" nil nil attr))
(setq attr (org-trim attr)))
(setq attr
(if (not attr) ""
(org-trim
(replace-regexp-in-string
"\\(wrap\\|multicolumn\\|float\\|placement=\\S-+\\)" "" attr))))
(setq attr (cond ((not (string= attr "")) attr)
((eq disposition 'float) "width=0.7\\textwidth")
((eq disposition 'wrap) "width=0.48\\textwidth")