diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2009-09-06 21:22:05 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2009-09-06 21:22:05 +0000 |
commit | a60f2e7b9c0567bec9ba06c73ccad235b32d8b8f (patch) | |
tree | 0675cf49c3245bbb7b750b6c6b61df980715fc17 /lisp/cedet/semantic/debug.el | |
parent | 6ca2fce3b8d345e619694f64c99013574000d0b3 (diff) | |
download | emacs-a60f2e7b9c0567bec9ba06c73ccad235b32d8b8f.tar.gz |
Minor whitespace changes and `require' fixes.
Diffstat (limited to 'lisp/cedet/semantic/debug.el')
-rw-r--r-- | lisp/cedet/semantic/debug.el | 12 |
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 |