summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic/debug.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/debug.el
parent6ca2fce3b8d345e619694f64c99013574000d0b3 (diff)
downloademacs-a60f2e7b9c0567bec9ba06c73ccad235b32d8b8f.tar.gz
Minor whitespace changes and `require' fixes.
Diffstat (limited to 'lisp/cedet/semantic/debug.el')
-rw-r--r--lisp/cedet/semantic/debug.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/lisp/cedet/semantic/debug.el b/lisp/cedet/semantic/debug.el
index 31100e075c2..c805a2c8e9a 100644
--- a/lisp/cedet/semantic/debug.el
+++ b/lisp/cedet/semantic/debug.el
@@ -38,16 +38,22 @@
(require 'semantic)
(require 'eieio)
+(eval-when-compile (require 'semantic/find))
;;; Code:
+
+;;;###autoload
(defvar semantic-debug-parser-source nil
"For any buffer, the file name (no path) of the parser.
This would be a parser for a specific language, not the source
to one of the parser generators.")
+;;;###autoload
(make-variable-buffer-local 'semantic-debug-parser-source)
+;;;###autoload
(defvar semantic-debug-parser-class nil
"Class to create when building a debug parser object.")
+;;;###autoload
(make-variable-buffer-local 'semantic-debug-parser-class)
(defvar semantic-debug-enabled nil
@@ -561,4 +567,10 @@ A frame is of the form:
(provide 'semantic/debug)
+;; Local variables:
+;; generated-autoload-file: "loaddefs.el"
+;; generated-autoload-feature: semantic/loaddefs
+;; generated-autoload-load-name: "semantic/debug"
+;; End:
+
;;; semantic/debug.el ends here