Mercurial > emacs
annotate lisp/cedet/srecode.el @ 110534:826d60163924
Merge changes from emacs-23 branch.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Thu, 23 Sep 2010 22:10:54 -0400 |
parents | b799d38f522a |
children | 417b1e4d63cd |
rev | line source |
---|---|
104498 | 1 ;;; srecode.el --- Semantic buffer evaluator. |
2 | |
106815 | 3 ;;; Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
104498 | 4 |
5 ;; Author: Eric M. Ludlam <zappo@gnu.org> | |
6 ;; Keywords: codegeneration | |
110016
a3e1f7134e6e
Add "Version:" and "Package:" Lisp file headers.
Chong Yidong <cyd@stupidchicken.com>
parents:
107167
diff
changeset
|
7 ;; Version: 1.0pre7 |
104498 | 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 | |
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. | |
37 ;; | |
38 ;; See the srecode manual for specific details. | |
39 | |
40 (require 'eieio) | |
41 (require 'mode-local) | |
105842
83dde921cc1b
* emacs-lisp/autoload.el (generated-autoload-feature): Remove.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105377
diff
changeset
|
42 (load "srecode/loaddefs" nil 'nomessage) |
104498 | 43 |
110531
67ff8ad45bd5
Synch SRecode to CEDET 1.0.
Chong Yidong <cyd@stupidchicken.com>
parents:
107167
diff
changeset
|
44 (defvar srecode-version "1.0" |
104498 | 45 "Current version of the Semantic Recoder.") |
46 | |
47 ;;; Code: | |
48 (defgroup srecode nil | |
49 "Semantic Recoder." | |
107167
f6b8c73548b3
Minor tweaks to custom groups.
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
50 :group 'extensions |
104498 | 51 :group 'tools) |
52 | |
53 (provide 'srecode) | |
54 | |
105377 | 55 ;; arch-tag: 6c671a1c-40e5-4ed3-ab05-84249c3afdaf |
104498 | 56 ;;; srecode.el ends here |