Bugfix: don't exclude parentheses from org-plain-link-re.
This commit is contained in:
parent
e06752ad53
commit
c80e212d57
|
@ -1,3 +1,8 @@
|
|||
2009-07-31 Bastien Guerry <bzg@altern.org>
|
||||
|
||||
* org.el (org-make-link-regexps): Don't exclude parentheses from
|
||||
`org-plain-link-re'
|
||||
|
||||
2009-07-29 Nicolas Goaziou <n.goaziou@neuf.fr> (tiny change)
|
||||
|
||||
* org-clock.el (org-clock-in): Bugfix: recognize timestamps with
|
||||
|
|
|
@ -4060,7 +4060,7 @@ This should be called after the variable `org-link-types' has changed."
|
|||
org-plain-link-re
|
||||
(concat
|
||||
"\\<\\(" (mapconcat 'identity org-link-types "\\|") "\\):"
|
||||
"\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)")
|
||||
"\\([^]\t\n\r<> ]+[^]\t\n\r<>,.; ]\\)")
|
||||
org-bracket-link-regexp
|
||||
"\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]"
|
||||
org-bracket-link-analytic-regexp
|
||||
|
|
Loading…
Reference in New Issue