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

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

Re: for loading own lisp functions, if some in separated files, automati


From: Colin S. Miller
Subject: Re: for loading own lisp functions, if some in separated files, automatically
Date: Wed, 15 Jul 2009 00:16:57 +0100
User-agent: Mozilla-Thunderbird 2.0.0.22 (X11/20090706)

You mean something like this?
(loop for lib in (directory-files "~/my-emacs-packages/" 't "elc?$" 't) do (load-library lib))


Oops,
That should be

(loop for lib in (directory-files "~/my-emacs-packages/" 't "\.elc?$" 't)  do 
(load-library lib))


reply via email to

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