summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic/bovine/gcc.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-09-05 23:04:46 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-09-05 23:04:46 +0000
commit1fe1547aeee1f09d8c921c0d58424370b6cd539f (patch)
tree513a2e7750f9d1ad4d70f52082db19ba8f2510d8 /lisp/cedet/semantic/bovine/gcc.el
parenta4556861cd40d9e472ad951f11d778591a818d42 (diff)
downloademacs-1fe1547aeee1f09d8c921c0d58424370b6cd539f.tar.gz
lisp/cedet/semantic/db-ref.el: Require semantic/db.
(semanticdb-add-reference): Fix feature name. (semanticdb-ref-test): Require eieio-datadebug instead of data-debug. lisp/cedet/semantic/analyze/debug.el: Fix file header. lisp/cedet/semantic/analyze/refs.el: Add local vars for autoloading. Require semantic, semantic/analyze, and semantic/db-find. Declare external functions. (semantic-analyze-proto-impl-toggle): Autoload. Require semantic/decorate. (semantic-analyze-current-tag): Autoload. lisp/cedet/semantic/bovine/c.el: Declare external function. lisp/cedet/semantic/bovine/gcc.el: Add local vars for autoloading. (semantic-gcc-setup): Autoload. lisp/cedet/semantic/decorate/include.el: Declare external functions. lisp/cedet/semantic/symref/cscope.el: Declare external functions. lisp/cedet/semantic/symref/filter.el: Declare external functions. lisp/cedet/semantic/symref/list.el (semantic-symref-rb-goto-file) (semantic-symref-rb-goto-tag, semantic-symref-rb-goto-match): Use last-command-event. (semantic-symref, semantic-symref-symbol): Autoload.
Diffstat (limited to 'lisp/cedet/semantic/bovine/gcc.el')
-rw-r--r--lisp/cedet/semantic/bovine/gcc.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/cedet/semantic/bovine/gcc.el b/lisp/cedet/semantic/bovine/gcc.el
index 60a5924f1f7..a2217795b67 100644
--- a/lisp/cedet/semantic/bovine/gcc.el
+++ b/lisp/cedet/semantic/bovine/gcc.el
@@ -26,6 +26,8 @@
(require 'semantic/dep)
+(defvar semantic-lex-c-preprocessor-symbol-file)
+(defvar semantic-lex-c-preprocessor-symbol-map)
(declare-function semantic-c-reset-preprocessor-symbol-map
"semantic/bovine/gcc")
@@ -142,6 +144,7 @@ This is an alist, and should include keys of:
'--prefix - Where GCC was installed.
It should also include other symbols GCC was compiled with.")
+;;;###autoload
(defun semantic-gcc-setup ()
"Setup Semantic C/C++ parsing based on GCC output."
(interactive)
@@ -316,4 +319,11 @@ gcc version 2.95.2 19991024 (release)"
)
(provide 'semantic/bovine/gcc)
+
+;; Local variables:
+;; generated-autoload-file: "../loaddefs.el"
+;; generated-autoload-feature: semantic/loaddefs
+;; generated-autoload-load-name: "semantic/bovine/gcc"
+;; End:
+
;;; semantic/bovine/gcc.el ends here