Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / cedet / srecode.el
blob3db3a2ff93599868754e49a28ba79c4713d57a13
1 ;;; srecode.el --- Semantic buffer evaluator.
3 ;;; Copyright (C) 2005, 2007-2014 Free Software Foundation, Inc.
5 ;; Author: Eric M. Ludlam <zappo@gnu.org>
6 ;; Keywords: codegeneration
7 ;; Version: 1.2
9 ;; This file is part of GNU Emacs.
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.
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.
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/>.
24 ;;; Commentary:
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.)
32 ;; Contemplation of the simplistic problem within the scope of
33 ;; semantic showed that the solution was more complex than could
34 ;; possibly be handled in semantic/format.el. Semantic Recode, or
35 ;; srecode is a rich API for generating code out of semantic tags, or
36 ;; recoding the tags.
38 ;; See the srecode manual for specific details.
40 (require 'eieio)
41 (require 'mode-local)
42 (load "srecode/loaddefs" nil 'nomessage)
44 (defvar srecode-version "1.2"
45 "Current version of the Semantic Recoder.")
47 ;;; Code:
48 (defgroup srecode nil
49 "Semantic Recoder."
50 :group 'extensions
51 :group 'tools)
53 (provide 'srecode)
55 ;;; srecode.el ends here