Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > > Fixed in d5767ad.
Hi! It looks like it's fixed for `org-insert-link', but I ran across a similar bug with `org-element-interpret-data' that seems to be not entirely fixed: (defun good-indent () (interactive) (insert (org-element-interpret-data `(headline (:level 1 :title "something" :tags ("foo")))))) (defun bad-indent () (interactive) (insert (org-element-interpret-data `(headline (:level 1 :title ((link (:raw-link "http://www.example.com/foo/bar/baz/qux/abc123f56789") "something")) :tags ("foo")))))) `good-indent' looks like: * something :foo: With org-mode 8.2.10, `bad-indent' looks like: * something :foo: With the latest master version of org-mode (d6aafd7), `bad-indent' looks like: * something :foo: (i.e., "almost but still not quite right"). I'm not very familiar with the org-element internals, but is there any way to work around this for 8.2.10? (I'm writing a library that I'd like to be compatible with Emacs 24.5.) Thanks so much!