From ac766747637b65a93b25d78544a8b2deae8ed152 Mon Sep 17 00:00:00 2001 From: ueno Date: Fri, 27 Sep 2002 06:54:44 +0000 Subject: [PATCH] Add comment. --- etc/gnu-emacs-user-config.in | 31 ++++++++++++++++++++++++++++--- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/etc/gnu-emacs-user-config.in b/etc/gnu-emacs-user-config.in index 74430b6..82690ec 100644 --- a/etc/gnu-emacs-user-config.in +++ b/etc/gnu-emacs-user-config.in @@ -1,12 +1,37 @@ #!/bin/sh +# Copyright (C) 2002 Daiki Ueno +# +# This file is part of Liece. + +# 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 2, 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 GNU Emacs; see the file COPYING. If not, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + +# Prepare user settings for GNU Emacs. +# If you are using XEmacs, you don't need to run this script. + EMACS=${EMACS-emacs} custom=`cat <<'EOF' (custom-set-variables - '(liece-intl-catalogue-directory "@pkgdatadir@/locale" nil (liece)) - '(liece-window-style-directory "@pkgdatadir@/styles" nil (liece)) - '(liece-icon-directory "@pkgdatadir@/icons" nil (liece))) + '(liece-intl-catalogue-directory "@pkgdatadir@/locale" nil (liece) + "Default location of Liece message catalogs.") + '(liece-window-style-directory "@pkgdatadir@/styles" nil (liece) + "Default location of Liece style files.") + '(liece-icon-directory "@pkgdatadir@/icons" nil (liece) + "Default location of Liece icon files.")) EOF` $EMACS -eval "$custom" -l cus-edit -f Custom-save -f kill-emacs -- 1.7.10.4