summaryrefslogtreecommitdiff
path: root/common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'common.sh')
-rw-r--r--common.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/common.sh b/common.sh
index 93f8851..1ec6afc 100644
--- a/common.sh
+++ b/common.sh
@@ -1,3 +1,22 @@
+# begin common.sh {{{
+
+# Copyright (C) 2013-2014 Luke Shumaker <lukeshu@sbcglobal.net>
+#
+# This file is not considered part of GNU Emacs.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
if type gettext &>/dev/null; then
_() { gettext "$@"; }
else
@@ -84,3 +103,5 @@ emacs_getopt() {
emacs_usage() {
emacsclient --help | grep -E '^(\s|-)'
}
+
+# }}} end common.sh