Merge branch 'maint'

This commit is contained in:
Bastien Guerry 2013-01-02 23:54:12 +01:00
commit ab17f9959e
1 changed files with 6 additions and 6 deletions

View File

@ -5566,7 +5566,7 @@ by a #."
'(font-lock-fontified t invisible t)
'(font-lock-fontified t face org-document-info-keyword)))
(add-text-properties
(match-beginning 6) (match-end 6)
(match-beginning 6) (1+ (match-end 6))
(if (string-equal dc1 "+title:")
'(font-lock-fontified t face org-document-title)
'(font-lock-fontified t face org-document-info))))
@ -9034,13 +9034,13 @@ part of Org's core."
"::" (match-string 1))
link cpltxt))
((and (featurep 'org-id)
(or (eq org-link-to-org-use-id t)
(or (eq org-id-link-to-org-use-id t)
(and (org-called-interactively-p 'any)
(or (eq org-link-to-org-use-id 'create-if-interactive)
(and (eq org-link-to-org-use-id
(or (eq org-id-link-to-org-use-id 'create-if-interactive)
(and (eq org-id-link-to-org-use-id
'create-if-interactive-and-no-custom-id)
(not custom-id))))
(and org-link-to-org-use-id (org-entry-get nil "ID"))))
(and org-id-link-to-org-use-id (org-entry-get nil "ID"))))
;; We can make a link using the ID.
(setq link (condition-case nil
(prog1 (org-id-store-link)