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