aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorGlenn Morris2008-02-02 03:52:44 +0000
committerGlenn Morris2008-02-02 03:52:44 +0000
commit835a3da77a274ed30563eb3e65c43dab5bf09564 (patch)
tree342372327c7ab960ee2f07762621a3dbd6cab4ec /admin
parent56b3f3fe705e27cf2e15200f9ca8e8bbee5603e4 (diff)
downloademacs-835a3da77a274ed30563eb3e65c43dab5bf09564.tar.gz
emacs-835a3da77a274ed30563eb3e65c43dab5bf09564.zip
Update copyright years and GPL version.
Diffstat (limited to 'admin')
-rwxr-xr-xadmin/charsets/mapconv8
-rw-r--r--admin/charsets/mule-charsets.el10
-rw-r--r--admin/unidata/Makefile8
-rw-r--r--admin/unidata/unidata-gen.el8
4 files changed, 17 insertions, 17 deletions
diff --git a/admin/charsets/mapconv b/admin/charsets/mapconv
index 641afc037b5..73b6b975331 100755
--- a/admin/charsets/mapconv
+++ b/admin/charsets/mapconv
@@ -1,6 +1,6 @@
1#!/bin/sh 1#!/bin/sh
2# 2#
3# Copyright (C) 2003 3# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
4# National Institute of Advanced Industrial Science and Technology (AIST) 4# National Institute of Advanced Industrial Science and Technology (AIST)
5# Registration Number H13PRO009 5# Registration Number H13PRO009
6# 6#
@@ -8,7 +8,7 @@
8# 8#
9# GNU Emacs is free software; you can redistribute it and/or modify 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 10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2, or (at your option) 11# the Free Software Foundation; either version 3, or (at your option)
12# any later version. 12# any later version.
13# 13#
14# GNU Emacs is distributed in the hope that it will be useful, 14# GNU Emacs is distributed in the hope that it will be useful,
@@ -18,8 +18,8 @@
18# 18#
19# You should have received a copy of the GNU General Public License 19# You should have received a copy of the GNU General Public License
20# along with GNU Emacs; see the file COPYING. If not, write to the 20# along with GNU Emacs; see the file COPYING. If not, write to the
21# Free Software Foundation, Inc., 59 Temple Place - Suite 330, 21# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22# Boston, MA 02111-1307, USA. 22# Boston, MA 02110-1301, USA.
23 23
24# Comment: 24# Comment:
25# Convert charset map of various format into this: 25# Convert charset map of various format into this:
diff --git a/admin/charsets/mule-charsets.el b/admin/charsets/mule-charsets.el
index 158121a2cfc..b104b9ab775 100644
--- a/admin/charsets/mule-charsets.el
+++ b/admin/charsets/mule-charsets.el
@@ -1,5 +1,5 @@
1;; mule-charsets.el -- Generate Mule-orignal charset maps. 1;; mule-charsets.el -- Generate Mule-orignal charset maps.
2;; Copyright (C) 2003 2;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
3;; National Institute of Advanced Industrial Science and Technology (AIST) 3;; National Institute of Advanced Industrial Science and Technology (AIST)
4;; Registration Number H13PRO009 4;; Registration Number H13PRO009
5 5
@@ -7,7 +7,7 @@
7 7
8;; GNU Emacs is free software; you can redistribute it and/or modify 8;; GNU Emacs is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by 9;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation; either version 2, or (at your option) 10;; the Free Software Foundation; either version 3, or (at your option)
11;; any later version. 11;; any later version.
12 12
13;; GNU Emacs is distributed in the hope that it will be useful, 13;; GNU Emacs is distributed in the hope that it will be useful,
@@ -17,8 +17,8 @@
17 17
18;; You should have received a copy of the GNU General Public License 18;; You should have received a copy of the GNU General Public License
19;; along with GNU Emacs; see the file COPYING. If not, write to the 19;; along with GNU Emacs; see the file COPYING. If not, write to the
20;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 20;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21;; Boston, MA 02111-1307, USA. 21;; Boston, MA 02110-1301, USA.
22 22
23(if (or (< emacs-major-version 21) 23(if (or (< emacs-major-version 21)
24 (< emacs-minor-version 3) 24 (< emacs-minor-version 3)
@@ -32,7 +32,7 @@
32 (unicode (encode-char start 'ucs))) 32 (unicode (encode-char start 'ucs)))
33 (if unicode 33 (if unicode
34 (if (nth 2 split) 34 (if (nth 2 split)
35 (insert (format "0x%02X%02X 0x%04X\n" 35 (insert (format "0x%02X%02X 0x%04X\n"
36 (nth 1 split) (nth 2 split) unicode)) 36 (nth 1 split) (nth 2 split) unicode))
37 (insert (format "0x%02X 0x%04X\n" (nth 1 split) unicode))))) 37 (insert (format "0x%02X 0x%04X\n" (nth 1 split) unicode)))))
38 (setq start (1+ start)))) 38 (setq start (1+ start))))
diff --git a/admin/unidata/Makefile b/admin/unidata/Makefile
index 220477b46d5..22f7bde7298 100644
--- a/admin/unidata/Makefile
+++ b/admin/unidata/Makefile
@@ -1,5 +1,5 @@
1# Makefile -- Makefile to generate character property tables. 1# Makefile -- Makefile to generate character property tables.
2# Copyright (C) 2005 2# Copyright (C) 2005, 2006, 2007, 2008
3# National Institute of Advanced Industrial Science and Technology (AIST) 3# National Institute of Advanced Industrial Science and Technology (AIST)
4# Registration Number H13PRO009 4# Registration Number H13PRO009
5# 5#
@@ -7,7 +7,7 @@
7 7
8# GNU Emacs is free software; you can redistribute it and/or modify 8# GNU Emacs is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by 9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2, or (at your option) 10# the Free Software Foundation; either version 3, or (at your option)
11# any later version. 11# any later version.
12 12
13# GNU Emacs is distributed in the hope that it will be useful, 13# GNU Emacs is distributed in the hope that it will be useful,
@@ -17,8 +17,8 @@
17 17
18# You should have received a copy of the GNU General Public License 18# You should have received a copy of the GNU General Public License
19# along with GNU Emacs; see the file COPYING. If not, write to the 19# along with GNU Emacs; see the file COPYING. If not, write to the
20# Free Software Foundation, Inc., 59 Temple Place - Suite 330, 20# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21# Boston, MA 02111-1307, USA. 21# Boston, MA 02110-1301, USA.
22 22
23EMACS = ../../src/emacs 23EMACS = ../../src/emacs
24DSTDIR = ../../lisp/international 24DSTDIR = ../../lisp/international
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el
index b9b746d7374..a3015a4968d 100644
--- a/admin/unidata/unidata-gen.el
+++ b/admin/unidata/unidata-gen.el
@@ -1,5 +1,5 @@
1;; unidata-gen.el -- Create files containing character property data. 1;; unidata-gen.el -- Create files containing character property data.
2;; Copyright (C) 2005 2;; Copyright (C) 2005, 2006, 2007, 2008
3;; National Institute of Advanced Industrial Science and Technology (AIST) 3;; National Institute of Advanced Industrial Science and Technology (AIST)
4;; Registration Number H13PRO009 4;; Registration Number H13PRO009
5 5
@@ -7,7 +7,7 @@
7 7
8;; GNU Emacs is free software; you can redistribute it and/or modify 8;; GNU Emacs is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by 9;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation; either version 2, or (at your option) 10;; the Free Software Foundation; either version 3, or (at your option)
11;; any later version. 11;; any later version.
12 12
13;; GNU Emacs is distributed in the hope that it will be useful, 13;; GNU Emacs is distributed in the hope that it will be useful,
@@ -17,8 +17,8 @@
17 17
18;; You should have received a copy of the GNU General Public License 18;; You should have received a copy of the GNU General Public License
19;; along with GNU Emacs; see the file COPYING. If not, write to the 19;; along with GNU Emacs; see the file COPYING. If not, write to the
20;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 20;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21;; Boston, MA 02111-1307, USA. 21;; Boston, MA 02110-1301, USA.
22 22
23;;; Commentary: 23;;; Commentary:
24 24