fedora-csb-system-manager
1# -*- mode: snippet -*-
2# contributor: Mark Karpov
3# name: GNU GPL 3 Header
4# key: gnugpl
5# --
6;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; -*-
7;;;
8;;; ${1:description}
9;;;
10;;; Copyright © ${2:`(format-time-string "%Y")`} `user-full-name` <`user-mail-address`>
11;;;
12;;; ${3:This program$(prog1 yas-text (fill-paragraph))} is free software:
13;;; you can redistribute it and/or modify it under the terms of the GNU
14;;; General Public License as published by the Free Software Foundation,
15;;; either version 3 of the License, or (at your option) any later version.
16;;;
17;;; ${3:$(prog1 yas-text (fill-paragraph))} is distributed in the hope that
18;;; it will be useful, but WITHOUT ANY WARRANTY; without even the implied
19;;; warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;;; GNU General Public License for more details.
21;;;
22;;; You should have received a copy of the GNU General Public License along
23;;; with this program. If not, see <http://www.gnu.org/licenses/>.
24
25$0