1 ;;; cc-ide.el --- Add all g0dilstuff lisp dirs to the load path
5 ;; Copyright (C) 2000 Stefan Bund
7 ;; cc-ide.el is free software; you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published
9 ;; by the Free Software Foundation; either version 2, or (at your
10 ;; option) any later version.
12 ;; cc-ide.el is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 ;; General Public License for more details.
30 (let* ((self (locate-library "g0dilstuff-init"))
31 (self-dir (file-name-directory self)))
32 (loop for dir in (directory-files self-dir t)
33 if (file-directory-p dir) do (add-to-list 'load-path (file-name-as-directory dir))))
35 (provide 'g0dilstuff-init)