Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / etc / srecode / default.srt
blob32718507058a94f0eacf5cdd8f6172bc8f1c44a0
1 ;;; default.srt --- SRecode templates for srecode-template-mode
3 ;; Copyright (C) 2007-2014 Free Software Foundation, Inc.
5 ;; Author: Eric M. Ludlam <eric@siege-engine.com>
7 ;; This file is part of GNU Emacs.
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.
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.
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/>.
22 set mode "default"
24 set comment_start  "#"
26 set COPYRIGHT "This program is free software; you can redistribute it and/or
27 modify it under the terms of the GNU General Public License as
28 published by the Free Software Foundation, either version 3 of the
29 License, or (at your option) any later version.
31 This program is distributed in the hope that it will be useful, but
32 WITHOUT ANY WARRANTY; without even the implied warranty of
33 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
34 General Public License for more details.
36 You should have received a copy of the GNU General Public License
37 along with this program.  If not, see http://www.gnu.org/licenses/."
39 set DOLLAR "$"
41 context file
43 template copyright
44 ----
45 {{COPYRIGHT:srecode-comment-prefix}}
46 ----
48 template filecomment :file :user :time
49 ----
50 {{comment_start}} {{FILENAME}} --- {{^}}
51 {{comment_prefix}}
52 {{comment_prefix}} Copyright (C) {{YEAR}} {{?AUTHOR}}
53 {{comment_prefix}}
54 {{comment_prefix}} Author: {{AUTHOR}} <{{EMAIL}}>{{#RCS}}
55 {{comment_prefix}} X-RCS: {{DOLLAR}}Id{{DOLLAR}}{{/RCS}}
56 {{comment_prefix}}
57 {{>:copyright}}
58 {{comment_end}}
59 ----
61 ;; end