aboutsummaryrefslogtreecommitdiffstats
path: root/etc/srecode/doc-default.srt
diff options
context:
space:
mode:
authorChong Yidong2009-10-03 19:28:56 +0000
committerChong Yidong2009-10-03 19:28:56 +0000
commitc05676c5ac4c1722bcac8a31668f5fab2e7ae6d4 (patch)
tree51c46490ca339b80cc72377cb26c1409bb017fc5 /etc/srecode/doc-default.srt
parente6e267fcba9251bbb7eeb66ca55c08e47c635ab8 (diff)
downloademacs-c05676c5ac4c1722bcac8a31668f5fab2e7ae6d4.tar.gz
emacs-c05676c5ac4c1722bcac8a31668f5fab2e7ae6d4.zip
* srecode: New directory for SRecode template files.
Diffstat (limited to 'etc/srecode/doc-default.srt')
-rw-r--r--etc/srecode/doc-default.srt80
1 files changed, 80 insertions, 0 deletions
diff --git a/etc/srecode/doc-default.srt b/etc/srecode/doc-default.srt
new file mode 100644
index 00000000000..76cae314305
--- /dev/null
+++ b/etc/srecode/doc-default.srt
@@ -0,0 +1,80 @@
1;; doc-default.srt --- SRecode templates for "document" applications
2
3;; Copyright (C) 2009 Free Software Foundation, Inc.
4
5;; Author: Eric M. Ludlam <eric@siege-engine.com>
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software: you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21
22set mode "default"
23
24set application "document"
25
26context declaration
27
28template section-comment :blank :indent
29"A comment occuring in front of a group of declarations."
30----
31{{comment_start}} {{?TITLE}}
32{{comment_prefix}}
33{{comment_prefix}} {{^}}
34{{comment_end}}
35----
36
37template function-comment :tag :indent :blank
38"A comment occuring in front of a function."
39----
40{{comment_start}} {{?NAME}} --
41{{DOC:srecode-comment-prefix}}
42{{comment_end}}
43----
44
45template variable-same-line-comment :tag
46"A comment occuring after a veriable declaration."
47----
48{{comment_start}} {{?DOC}} {{comment_end}}
49----
50
51;; These happen to be the same as in a classdecl.
52template group-comment-start :blank :indent
53"A comment occuring in front of a group of declarations."
54----
55{{comment_start}} {{?GROUPNAME}} --
56{{comment_end}}
57----
58
59template group-comment-end :indent
60"A comment occuring at the end of a a group of declarations."
61----
62{{comment_start}} End {{?GROUPNAME}} {{comment_end}}
63----
64
65;; Some templates only show up in classdecls.
66context classdecl
67
68template group-comment-start :blank :indent
69"A comment occuring in front of a group of declarations."
70----
71{{>:declaration:group-comment-start}}
72----
73
74template group-comment-end :indent
75"A comment occuring at the end of a a group of declarations."
76----
77{{>:declaration:group-comment-end}}
78----
79
80;; end \ No newline at end of file