From 40a8cf3c4192cb6862de14fe8a393324aa655f86 Mon Sep 17 00:00:00 2001 From: "Tom Breton (Tehom)" Date: Sun, 27 Jun 2010 16:36:20 -0400 Subject: [PATCH] Added autoload declarations to entry point functions --- eproject-config.el | 1 + eproject.el | 4 ++++ 2 files changed, 5 insertions(+) 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) -- 2.11.4.GIT