org-element-context yields:
(paragraph (:begin 6145 :end 6166 :contents-begin 6145 :contents-end 6165 :post-blank 1 :post-affiliated 6145 ...))

After relaoding org:
(link (:type "textcite" :path "Hobart2003" :raw-link "textcite:Hobart2003" :application nil :search-option nil :begin 6145 ...))

and the link is working again! Why is that the case? I get org with git pull and then make autoloads, is that the problem?

Thank you for your help,
Christopher.

On Sat, Nov 8, 2014 at 8:08 PM, Nicolas Goaziou <mail@nicolasgoaziou.fr> wrote:
Christopher Dannheim <ch.dannheim@gmail.com> writes:

> the variable org-link does contain 'textcite' (as well as all other bibtex
> and biblatex link types defined by org-ref/reftex).
>
> org-link-types is a variable defined in `org.el'.
> Its value is
> ("http" ... "citep*" "citealt" "citealt*" "citealp" "citealp*" "citenum"
> "citetext" "citeauthor" "citeauthor*" "citeyear" "citeyear*" "Citet"
> "Citep" "Citealt" "Citealp" "Citeauthor" "Cite" "parencite" "Parencite"
> "footcite" "footcitetext" "textcite" "Textcite" ... "rmail")

OK. So what happens if you put point on you defective link, and eval

  M-: (org-element-context)

Then

  M-x org-reload M-: (org-element-context)


Regards,