Agustin Martin <[EMAIL PROTECTED]> writes: > However emacs-snapshot seems to load ispell and flyspell from > dictionaries-common rather than from its byte-compiled files
Are you sure? It doesn't do that here... ELISP> (locate-library "flyspell") "/usr/share/emacs/22.0.50/lisp/textmodes/flyspell.elc" ELISP> (locate-library "ispell") "/usr/share/emacs/22.0.50/lisp/textmodes/ispell.elc" ELISP> > The reason for this is that emacs-snapshot load-path is > [...] > /usr/share/emacs/site-lisp/* (dict-common files are here) > /usr/share/emacs/22.0.50/* (emacs-snapshot files are here) /usr/share/emacs/site-lisp/ doesn't have a subdirs.el file, so its subdirs won't be loaded automatically. So the files shouldn't be loaded, unless /usr/share/emacs/site-lisp/dictionaries-common/ is added to the path explicitly. And it isn't in 'emacs-snapshot -q': ELISP> (member "/usr/share/emacs/site-lisp/dictionaries-common/" load-path) nil ELISP> Perhaps some package on your system is messing with load-path? -- ,''`. : :' : Romain Francoise <[EMAIL PROTECTED]> `. `' http://people.debian.org/~rfrancoise/ `- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

