show/hide this revision's text 2 Add (require 'cl) so that do works
(let ((base "~/Projects/emacs"))
  (add-to-list 'load-path base)
  (do dolist ((f f (directory-files base) (cdr f)))
      ((null f)base))
    (let ((name (concat base "/" (car f)))f)))
      (when (and (file-directory-p name) 
                 (not (equal (car f ) ".."))
                 (not (equal (car f ) ".")))
        (add-to-list 'load-path name)))))
show/hide this revision's text 1
(let ((base "~/Projects/emacs"))
  (add-to-list 'load-path base)
  (do ((f (directory-files base) (cdr f)))
      ((null f))
    (let ((name (concat base "/" (car f))))
      (when (and (file-directory-p name) 
                 (not (equal (car f) ".."))
                 (not (equal (car f) ".")))
        (add-to-list 'load-path name)))))