summaryrefslogtreecommitdiff
path: root/lisp/cedet
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-12-13 01:55:09 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-12-13 01:55:09 +0000
commit6feb83defecf97d65b90bac29c82b8d4ed83bcda (patch)
treec951bce88b476ff5c582dc887b86d848c768dda2 /lisp/cedet
parent076f2f8f1e0f79d695ef5dd9cc9e40c41d58790c (diff)
downloademacs-6feb83defecf97d65b90bac29c82b8d4ed83bcda.tar.gz
Add commentary about how to use Semantic.
Diffstat (limited to 'lisp/cedet')
-rw-r--r--lisp/cedet/semantic.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/cedet/semantic.el b/lisp/cedet/semantic.el
index 446d1e0a3e6..7e3673e6adb 100644
--- a/lisp/cedet/semantic.el
+++ b/lisp/cedet/semantic.el
@@ -25,9 +25,14 @@
;;
;; API for providing the semantic content of a buffer.
;;
-;; The semantic API provides an interface to a series of different parser
+;; The Semantic API provides an interface to a series of different parser
;; implementations. Each parser outputs a parse tree in a similar format
;; designed to handle typical functional and object oriented languages.
+;;
+;; To enable Semantic, turn on `semantic-mode', a global minor mode
+;; (M-x semantic-mode RET, or "Source Code Parsers" from the Tools
+;; menu). To enable it at startup, put (semantic-mode 1) in your init
+;; file.
(require 'cedet)
(require 'semantic/tag)