Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
37d2e431
Commit
37d2e431
authored
Mar 08, 2013
by
Glenn Morris
Browse files
Merge from emacs-24; up to 2012-12-25T15:07:59Z!dmantipov@yandex.ru
parents
eb1a6e15
f186a0b5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/org/ChangeLog
lisp/org/ChangeLog
+6
-0
lisp/org/org-exp.el
lisp/org/org-exp.el
+1
-2
No files found.
lisp/org/ChangeLog
View file @
37d2e431
2013-03-08 Bastien Guerry <bzg@gnu.org>
* org-exp.el (org-export-normalize-links): Fix critical bug: do
not rely on `org-context' to guess where to prevent links
normalization.
2013-02-28 Achim Gratz <Stromeko@Stromeko.DE>
* org.el (org-org-menu): Use correct key "C-u C-c C-x !" to do
...
...
lisp/org/org-exp.el
View file @
37d2e431
...
...
@@ -2113,8 +2113,7 @@ Also, store forced alignment information found in such lines."
(put-text-property (match-beginning 0) (match-end 0) 'org-normalized-link t))
(goto-char (point-min))
(while (re-search-forward re-plain-link nil t)
(unless (or (get-text-property (match-beginning 0) 'org-normalized-link)
(assoc :tags (org-context)))
(unless (get-text-property (match-beginning 0) 'org-normalized-link)
(goto-char (1- (match-end 0)))
(org-if-unprotected-at (1+ (match-beginning 0))
(let* ((s (concat (match-string 1)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment