summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic/bovine/make.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-09-06 21:22:05 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-09-06 21:22:05 +0000
commita60f2e7b9c0567bec9ba06c73ccad235b32d8b8f (patch)
tree0675cf49c3245bbb7b750b6c6b61df980715fc17 /lisp/cedet/semantic/bovine/make.el
parent6ca2fce3b8d345e619694f64c99013574000d0b3 (diff)
downloademacs-a60f2e7b9c0567bec9ba06c73ccad235b32d8b8f.tar.gz
Minor whitespace changes and `require' fixes.
Diffstat (limited to 'lisp/cedet/semantic/bovine/make.el')
-rw-r--r--lisp/cedet/semantic/bovine/make.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/lisp/cedet/semantic/bovine/make.el b/lisp/cedet/semantic/bovine/make.el
index c6f6e88ca30..1686ef2aa15 100644
--- a/lisp/cedet/semantic/bovine/make.el
+++ b/lisp/cedet/semantic/bovine/make.el
@@ -153,7 +153,7 @@ We never have local variables in Makefiles."
)
(cond ((eq class 'function)
(concat name ": "
- (semantic--format-tag-arguments
+ (semantic--format-tag-arguments
(semantic-tag-function-arguments tag)
#'semantic-format-tag-prototype
color)))
@@ -205,6 +205,7 @@ Uses default implementation, and also gets a list of filenames."
nil
"The system include path used by Makefiles langauge.")
+;;;###autoload
(defun semantic-default-make-setup ()
"Set up a Makefile buffer for parsing with semantic."
(semantic-make-by--install-parser)
@@ -229,8 +230,15 @@ Uses default implementation, and also gets a list of filenames."
(setq semantic-lex-analyzer #'semantic-make-lexer)
)
+;;;###autoload
(add-hook 'makefile-mode-hook 'semantic-default-make-setup)
(provide 'semantic/bovine/make)
+;; Local variables:
+;; generated-autoload-file: "../loaddefs.el"
+;; generated-autoload-feature: semantic/loaddefs
+;; generated-autoload-load-name: "semantic/bovine/make"
+;; End:
+
;;; semantic/bovine/make.el ends here