# HG changeset patch # User Chong Yidong # Date 1252193427 0 # Node ID 155479111645c458d2ab05f4ee53e7e7d96264ea # Parent ee7637f5d6deaeb176e91f8081af97c4535aa2a0 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. diff -r ee7637f5d6de -r 155479111645 lisp/cedet/semantic/symref.el --- 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