changeset 106557:e60ede6c3be3

Add commentary about how to use Semantic.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 13 Dec 2009 01:55:09 +0000
parents 5aa7826e36c1
children 3d091f151696
files lisp/cedet/semantic.el
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/cedet/semantic.el	Sat Dec 12 22:49:55 2009 +0000
+++ b/lisp/cedet/semantic.el	Sun Dec 13 01:55:09 2009 +0000
@@ -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)