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

Fix bug when exporting links with attributes.

This commit is contained in:
Carsten Dominik 2008-07-23 16:04:01 -07:00
parent 5ea6de59a1
commit 0be85cda60
2 changed files with 1 additions and 4 deletions

View file

@ -64,10 +64,6 @@
: [[./img/a.jpg{{alt="This is image A" title="Image with no action"}}] ]
**** TODO Fix link export in examples.
For some reason these are processed even though they are in
an exmple region.
*** A way to compare times during a property search
If the comparison value in a property search is a string that
is enclosed in angular brackets, a time comparison will be

View file

@ -1716,6 +1716,7 @@ When it is nil, all comments will be removed."
(replace-match s t t))))
(goto-char (point-min))
(while (re-search-forward org-bracket-link-regexp nil t)
(goto-char (1- (match-end 0)))
(org-if-unprotected
(let* ((xx (save-match-data
(org-link-expand-abbrev (match-string 1))))