help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Error while loading 50dictionaries-common


From: Bastien Guerry
Subject: Re: Error while loading 50dictionaries-common
Date: Tue, 12 Feb 2008 13:05:06 +0000
User-agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.60 (gnu/linux)

Ulrich Scholz <d5@thispla.net> writes:

> Dear all,
>
> I'm using Emacs 22 on Debian.  After upgrading from Emacs 21, I get
> the error
>
>    Error while loading 50dictionaries-common
>
> What to do?

Maybe you can make sure that you're adding all relevant directories to
your load-path - this will do:

(mapcar '(lambda (f)
           (and (not (string= (substring f -3) "/.."))
                (file-directory-p f)
                (add-to-list 'load-path f)))
        (directory-files "/usr/share/emacs/site-lisp" t))

(mapcar '(lambda (f)
           (and (not (string= (substring f -3) "/.."))
                (file-directory-p f)
                (add-to-list 'load-path f)))
        (directory-files "/usr/local/share/emacs/site-lisp" t))

-- 
Bastien




reply via email to

[Prev in Thread] Current Thread [Next in Thread]