From: Tom Breton (Tehom) Date: Sun, 27 Jun 2010 20:36:20 +0000 (-0400) Subject: Added autoload declarations to entry point functions X-Git-Url: https://repo.or.cz/w/eproject.git/commitdiff_plain/40a8cf3c4192cb6862de14fe8a393324aa655f86 Added autoload declarations to entry point functions --- diff --git a/eproject-config.el b/eproject-config.el index 4c3092c..91e5e96 100644 --- a/eproject-config.el +++ b/eproject-config.el @@ -75,6 +75,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Show/Hide the *eproject* buffer +;;;###autoload (defun eproject-setup () "Show the configuration buffer." (interactive) diff --git a/eproject.el b/eproject.el index c6026a8..1a9f52c 100644 --- a/eproject.el +++ b/eproject.el @@ -774,12 +774,14 @@ for all project files (nil/t)." ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; choose next/previous file +;;;###autoload (defun eproject-nextfile () "Switch to the next file that belongs to the current project." (interactive) (prj-switch-file 'prj-next-file 'next-buffer) ) +;;;###autoload (defun eproject-prevfile () "Switch to the previous file that belongs to the current project." (interactive) @@ -1095,6 +1097,7 @@ for all project files (nil/t)." (require 'dired) +;;;###autoload (defun prj-dired-addfiles () (interactive) (when prj-current @@ -1109,6 +1112,7 @@ for all project files (nil/t)." (prj-setmenu) ))) +;;;###autoload (defun eproject-dired () "Start a dired window with the project directory." (interactive)