* src/eval.c (Fbind_symbol): New function.
[bpt/emacs.git] / lisp / cedet / srecode.el
CommitLineData
4d902e6f
CY
1;;; srecode.el --- Semantic buffer evaluator.
2
ba318903 3;;; Copyright (C) 2005, 2007-2014 Free Software Foundation, Inc.
4d902e6f
CY
4
5;; Author: Eric M. Ludlam <zappo@gnu.org>
6;; Keywords: codegeneration
be798504 7;; Version: 1.2
4d902e6f
CY
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software: you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24;;; Commentary:
25;;
26;; Semantic does the job of converting source code into useful tag
27;; information. The set of `semantic-format-tag' functions has one
28;; function that will create a prototype of a tag, which has severe
29;; issues of complexity (in the format tag file itself) and inaccuracy
30;; (for the purpose of C++ code.)
31;;
32;; Contemplation of the simplistic problem within the scope of
33;; semantic showed that the solution was more complex than could
07a79ce4 34;; possibly be handled in semantic/format.el. Semantic Recode, or
4d902e6f
CY
35;; srecode is a rich API for generating code out of semantic tags, or
36;; recoding the tags.
37;;
38;; See the srecode manual for specific details.
39
40(require 'eieio)
41(require 'mode-local)
fae4e5b9 42(load "srecode/loaddefs" nil 'nomessage)
4d902e6f 43
be798504 44(defvar srecode-version "1.2"
4d902e6f
CY
45 "Current version of the Semantic Recoder.")
46
47;;; Code:
48(defgroup srecode nil
49 "Semantic Recoder."
ff90f4b0 50 :group 'extensions
4d902e6f
CY
51 :group 'tools)
52
53(provide 'srecode)
54
55;;; srecode.el ends here