Le 25/06/2013 14:30, AW a écrit :
>  (setq recentf-exclude '(
>    "/diary[0-9]\{4\}[a-zA-Z]\{2,4\}$"
> ))

You have to double the backslashes. Reason is that when lisp reads the
string, it translates it into
/diary[0-9]{4}[a-zA-Z]{2,4}$
which is not the regexp you want.

-- 
Nico.

Reply via email to