changeset 104465:155479111645

lisp/cedet/semantic/symref.el: Add local vars for autoloading. (semantic-symref-find-references-by-name) (semantic-symref-find-tags-by-name, semantic-symref-find-tags-by-regexp) (semantic-symref-find-tags-by-completion) (semantic-symref-find-file-references-by-name) (semantic-symref-find-text): Autoload.
author Chong Yidong <cyd@stupidchicken.com>
date Sat, 05 Sep 2009 23:30:27 +0000
parents ee7637f5d6de
children 22e5fec9a17e
files lisp/cedet/semantic/symref.el
diffstat 1 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/cedet/semantic/symref.el	Sat Sep 05 23:27:45 2009 +0000
+++ b/lisp/cedet/semantic/symref.el	Sat Sep 05 23:30:27 2009 +0000
@@ -148,6 +148,7 @@
 ;;; EXTERNAL API
 ;;
 
+;;;###autoload
 (defun semantic-symref-find-references-by-name (name &optional scope tool-return)
   "Find a list of references to NAME in the current project.
 Optional SCOPE specifies which file set to search.  Defaults to 'project.
@@ -171,6 +172,7 @@
 	(semantic-symref-data-debug-last-result))))
   )
 
+;;;###autoload
 (defun semantic-symref-find-tags-by-name (name &optional scope)
   "Find a list of references to NAME in the current project.
 Optional SCOPE specifies which file set to search.  Defaults to 'project.
@@ -190,6 +192,7 @@
 	(semantic-symref-data-debug-last-result))))
   )
 
+;;;###autoload
 (defun semantic-symref-find-tags-by-regexp (name &optional scope)
   "Find a list of references to NAME in the current project.
 Optional SCOPE specifies which file set to search.  Defaults to 'project.
@@ -209,6 +212,7 @@
 	(semantic-symref-data-debug-last-result))))
   )
 
+;;;###autoload
 (defun semantic-symref-find-tags-by-completion (name &optional scope)
   "Find a list of references to NAME in the current project.
 Optional SCOPE specifies which file set to search.  Defaults to 'project.
@@ -228,6 +232,7 @@
 	(semantic-symref-data-debug-last-result))))
   )
 
+;;;###autoload
 (defun semantic-symref-find-file-references-by-name (name &optional scope)
   "Find a list of references to NAME in the current project.
 Optional SCOPE specifies which file set to search.  Defaults to 'project.
@@ -247,6 +252,7 @@
 	(semantic-symref-data-debug-last-result))))
   )
 
+;;;###autoload
 (defun semantic-symref-find-text (text &optional scope)
   "Find a list of occurances of TEXT in the current project.
 TEXT is a regexp formatted for use with egrep.
@@ -487,4 +493,10 @@
 
 (provide 'semantic/symref)
 
+;; Local variables:
+;; generated-autoload-file: "loaddefs.el"
+;; generated-autoload-feature: semantic/loaddefs
+;; generated-autoload-load-name: "semantic/symref"
+;; End:
+
 ;;; semantic/symref.el ends here