aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorStefan Monnier2011-01-14 12:18:41 -0500
committerStefan Monnier2011-01-14 12:18:41 -0500
commit77ab81d0545e980c57c0a35510ade29a9e43b4cd (patch)
tree258514dac7faab41642d8f319eb113c8a5f09690 /admin
parent8faba62c38f67693535c3471d867e66757b3b04e (diff)
parentfb724e553757e9d3344be443ab5f329afc9bf91c (diff)
downloademacs-77ab81d0545e980c57c0a35510ade29a9e43b4cd.tar.gz
emacs-77ab81d0545e980c57c0a35510ade29a9e43b4cd.zip
Merge from emacs-23
Diffstat (limited to 'admin')
-rw-r--r--admin/ChangeLog9
-rw-r--r--admin/README2
-rw-r--r--admin/admin.el26
-rw-r--r--admin/alloc-colors.c2
-rwxr-xr-xadmin/build-configs2
-rw-r--r--admin/charsets/Makefile2
-rw-r--r--admin/charsets/big5.awk2
-rw-r--r--admin/charsets/compact.awk2
-rw-r--r--admin/charsets/cp51932.awk2
-rw-r--r--admin/charsets/cp932.awk2
-rw-r--r--admin/charsets/eucjp-ms.awk2
-rw-r--r--admin/charsets/gb180302.awk2
-rw-r--r--admin/charsets/gb180304.awk2
-rwxr-xr-xadmin/charsets/mapconv2
-rw-r--r--admin/charsets/mapfiles/README4
-rw-r--r--admin/charsets/mule-charsets.el2
-rw-r--r--admin/cus-test.el2
-rwxr-xr-xadmin/diff-tar-files2
-rwxr-xr-xadmin/make-announcement2
-rwxr-xr-xadmin/make-emacs2
-rw-r--r--admin/notes/copyright2
-rw-r--r--admin/notes/font-backend2
-rw-r--r--admin/notes/lel-TODO2
-rw-r--r--admin/notes/multi-tty2
-rw-r--r--admin/notes/unicode2
-rw-r--r--admin/nt/README-UNDUMP.W322
-rw-r--r--admin/nt/README-ftp-server2
-rwxr-xr-xadmin/quick-install-emacs4
-rw-r--r--admin/unidata/Makefile.in2
-rw-r--r--admin/unidata/makefile.w32-in2
-rw-r--r--admin/unidata/unidata-gen.el5
31 files changed, 57 insertions, 43 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index e0059664aba..5edbbdac653 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,5 +1,10 @@
12011-01-14 Glenn Morris <rgm@gnu.org> 12011-01-14 Glenn Morris <rgm@gnu.org>
2 2
3 * admin.el (set-copyright): Also handle \year in refcards/*.tex.
4
52011-01-14 Eli Zaretskii <eliz@gnu.org>
62011-01-14 Glenn Morris <rgm@gnu.org>
7
3 * bzrmerge.el: Require cl when compiling. 8 * bzrmerge.el: Require cl when compiling.
4 (bzrmerge-merges): Doc fix. 9 (bzrmerge-merges): Doc fix.
5 10
@@ -996,8 +1001,8 @@
996;; coding: utf-8 1001;; coding: utf-8
997;; End: 1002;; End:
998 1003
999 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 1004 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
1000 2008, 2009, 2010 Free Software Foundation, Inc. 1005 2010, 2011 Free Software Foundation, Inc.
1001 1006
1002 This file is part of GNU Emacs. 1007 This file is part of GNU Emacs.
1003 1008
diff --git a/admin/README b/admin/README
index 694f206baaf..17232f5f3a5 100644
--- a/admin/README
+++ b/admin/README
@@ -1,5 +1,5 @@
1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
2 2010 Free Software Foundation, Inc. 2 2010, 2011 Free Software Foundation, Inc.
3See the end of the file for license conditions. 3See the end of the file for license conditions.
4 4
5 5
diff --git a/admin/admin.el b/admin/admin.el
index 7cd2c02fb58..4387aecdde7 100644
--- a/admin/admin.el
+++ b/admin/admin.el
@@ -1,7 +1,7 @@
1;;; admin.el --- utilities for Emacs administration 1;;; admin.el --- utilities for Emacs administration
2 2
3;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 3;; Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4;; 2010 Free Software Foundation, Inc. 4;; 2010, 2011 Free Software Foundation, Inc.
5 5
6;; This file is part of GNU Emacs. 6;; This file is part of GNU Emacs.
7 7
@@ -160,7 +160,6 @@ Root must be the root of an Emacs source tree."
160 version (rx (and "Version=" (submatch (1+ (in "0-9."))))))) 160 version (rx (and "Version=" (submatch (1+ (in "0-9.")))))))
161 161
162;; Note this makes some assumptions about form of short copyright. 162;; Note this makes some assumptions about form of short copyright.
163;; FIXME add the \year in the refcards/*.tex files.
164(defun set-copyright (root copyright) 163(defun set-copyright (root copyright)
165 "Set Emacs short copyright to COPYRIGHT in relevant files under ROOT. 164 "Set Emacs short copyright to COPYRIGHT in relevant files under ROOT.
166Root must be the root of an Emacs source tree." 165Root must be the root of an Emacs source tree."
@@ -174,16 +173,16 @@ Root must be the root of an Emacs source tree."
174 (error "%s doesn't seem to be the root of an Emacs source tree" root)) 173 (error "%s doesn't seem to be the root of an Emacs source tree" root))
175 (set-version-in-file root "src/emacs.c" copyright 174 (set-version-in-file root "src/emacs.c" copyright
176 (rx (and "emacs_copyright" (0+ (not (in ?\"))) 175 (rx (and "emacs_copyright" (0+ (not (in ?\")))
177 ?\" (submatch (1+ (not (in ?\")))) ?\"))) 176 ?\" (submatch (1+ (not (in ?\")))) ?\")))
178 (set-version-in-file root "lib-src/ebrowse.c" copyright 177 (set-version-in-file root "lib-src/ebrowse.c" copyright
179 (rx (and "emacs_copyright" (0+ (not (in ?\"))) 178 (rx (and "emacs_copyright" (0+ (not (in ?\")))
180 ?\" (submatch (1+ (not (in ?\")))) ?\"))) 179 ?\" (submatch (1+ (not (in ?\")))) ?\")))
181 (set-version-in-file root "lib-src/etags.c" copyright 180 (set-version-in-file root "lib-src/etags.c" copyright
182 (rx (and "emacs_copyright" (0+ (not (in ?\"))) 181 (rx (and "emacs_copyright" (0+ (not (in ?\")))
183 ?\" (submatch (1+ (not (in ?\")))) ?\"))) 182 ?\" (submatch (1+ (not (in ?\")))) ?\")))
184 (set-version-in-file root "lib-src/rcs2log" copyright 183 (set-version-in-file root "lib-src/rcs2log" copyright
185 (rx (and "Copyright" (0+ space) ?= (0+ space) 184 (rx (and "Copyright" (0+ space) ?= (0+ space)
186 ?\' (submatch (1+ nonl))))) 185 ?\' (submatch (1+ nonl)))))
187 ;; This one is a nuisance, as it needs to be split over two lines. 186 ;; This one is a nuisance, as it needs to be split over two lines.
188 (string-match "\\(.*[0-9]\\{4\\} *\\)\\(.*\\)" copyright) 187 (string-match "\\(.*[0-9]\\{4\\} *\\)\\(.*\\)" copyright)
189 ;; nextstep. 188 ;; nextstep.
@@ -199,7 +198,18 @@ Root must be the root of an Emacs source tree."
199 (set-version-in-file 198 (set-version-in-file
200 root "nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist" 199 root "nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist"
201 copyright (rx (and "Copyright" (0+ space) ?\= (0+ space) 200 copyright (rx (and "Copyright" (0+ space) ?\= (0+ space)
202 ?\" (submatch (1+ (not (in ?\")))))))) 201 ?\" (submatch (1+ (not (in ?\")))))))
202 (when (string-match "\\([0-9]\\{4\\}\\)" copyright)
203 (setq copyright (match-string 1 copyright))
204 (dolist (file (directory-files (expand-file-name "etc/refcards" root)
205 t "\\.tex\\'"))
206 (unless (string-match "gnus-refcard\\.tex" file)
207 (set-version-in-file
208 root file copyright
209 (concat (if (string-match "ru-refcard\\.tex" file)
210 "\\\\newcommand{\\\\cyear}\\[0\\]{"
211 "\\\\def\\\\year{")
212 "\\([0-9]\\{4\\}\\)}.+%.+copyright year"))))))
203 213
204(provide 'admin) 214(provide 'admin)
205 215
diff --git a/admin/alloc-colors.c b/admin/alloc-colors.c
index 8ff699382a0..38312604248 100644
--- a/admin/alloc-colors.c
+++ b/admin/alloc-colors.c
@@ -1,5 +1,5 @@
1/* Allocate X colors. Used for testing with dense colormaps. 1/* Allocate X colors. Used for testing with dense colormaps.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
diff --git a/admin/build-configs b/admin/build-configs
index e20024ff666..759750f8475 100755
--- a/admin/build-configs
+++ b/admin/build-configs
@@ -1,7 +1,7 @@
1#! /usr/bin/perl 1#! /usr/bin/perl
2# Build Emacs in several different configurations. 2# Build Emacs in several different configurations.
3 3
4# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 4# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5# Free Software Foundation, Inc. 5# Free Software Foundation, Inc.
6 6
7# This file is part of GNU Emacs. 7# This file is part of GNU Emacs.
diff --git a/admin/charsets/Makefile b/admin/charsets/Makefile
index a93b18b63cc..a041f7f14ab 100644
--- a/admin/charsets/Makefile
+++ b/admin/charsets/Makefile
@@ -1,5 +1,5 @@
1# Makefile -- Makefile to generate charset maps in etc/charsets. 1# Makefile -- Makefile to generate charset maps in etc/charsets.
2# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 2# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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#
diff --git a/admin/charsets/big5.awk b/admin/charsets/big5.awk
index a0113a6677c..7cae450ba53 100644
--- a/admin/charsets/big5.awk
+++ b/admin/charsets/big5.awk
@@ -1,4 +1,4 @@
1# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 1# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
2# National Institute of Advanced Industrial Science and Technology (AIST) 2# National Institute of Advanced Industrial Science and Technology (AIST)
3# Registration Number H13PRO009 3# Registration Number H13PRO009
4 4
diff --git a/admin/charsets/compact.awk b/admin/charsets/compact.awk
index f84715e1d8d..83b5a7f0e34 100644
--- a/admin/charsets/compact.awk
+++ b/admin/charsets/compact.awk
@@ -1,5 +1,5 @@
1# compact.awk -- Make charset map compact. 1# compact.awk -- Make charset map compact.
2# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 2# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
diff --git a/admin/charsets/cp51932.awk b/admin/charsets/cp51932.awk
index 387f314fe37..6cf2f37dbd3 100644
--- a/admin/charsets/cp51932.awk
+++ b/admin/charsets/cp51932.awk
@@ -1,5 +1,5 @@
1# cp51932.awk -- Generate a translation table for CP51932. 1# cp51932.awk -- Generate a translation table for CP51932.
2# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 2# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
diff --git a/admin/charsets/cp932.awk b/admin/charsets/cp932.awk
index 397f025acee..d6f1966894e 100644
--- a/admin/charsets/cp932.awk
+++ b/admin/charsets/cp932.awk
@@ -1,5 +1,5 @@
1# cp932.awk -- Add sort keys and append user defined area to CP932-2BYTE.map. 1# cp932.awk -- Add sort keys and append user defined area to CP932-2BYTE.map.
2# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 2# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
diff --git a/admin/charsets/eucjp-ms.awk b/admin/charsets/eucjp-ms.awk
index f5876777b01..15803525997 100644
--- a/admin/charsets/eucjp-ms.awk
+++ b/admin/charsets/eucjp-ms.awk
@@ -1,5 +1,5 @@
1# eucjp-ms.awk -- Generate a translation table for eucJP-ms. 1# eucjp-ms.awk -- Generate a translation table for eucJP-ms.
2# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 2# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
diff --git a/admin/charsets/gb180302.awk b/admin/charsets/gb180302.awk
index fd8748f50be..7b89c903beb 100644
--- a/admin/charsets/gb180302.awk
+++ b/admin/charsets/gb180302.awk
@@ -1,4 +1,4 @@
1# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 1# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
2# National Institute of Advanced Industrial Science and Technology (AIST) 2# National Institute of Advanced Industrial Science and Technology (AIST)
3# Registration Number H13PRO009 3# Registration Number H13PRO009
4 4
diff --git a/admin/charsets/gb180304.awk b/admin/charsets/gb180304.awk
index 43e2b474841..c1b691b9a63 100644
--- a/admin/charsets/gb180304.awk
+++ b/admin/charsets/gb180304.awk
@@ -1,4 +1,4 @@
1# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 1# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
2# National Institute of Advanced Industrial Science and Technology (AIST) 2# National Institute of Advanced Industrial Science and Technology (AIST)
3# Registration Number H13PRO009 3# Registration Number H13PRO009
4 4
diff --git a/admin/charsets/mapconv b/admin/charsets/mapconv
index 89943074939..deb69e2a1a9 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, 2004, 2005, 2006, 2007, 2008, 2009, 2010 3# Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
diff --git a/admin/charsets/mapfiles/README b/admin/charsets/mapfiles/README
index 3e09cfd098f..a47c5d7b733 100644
--- a/admin/charsets/mapfiles/README
+++ b/admin/charsets/mapfiles/README
@@ -1,5 +1,5 @@
1Copyright (C) 2009, 2010 Free Software Foundation, Inc. 1Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
2Copyright (C) 2009, 2010 2Copyright (C) 2009, 2010, 2011
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
5See the end of the file for license conditions. 5See the end of the file for license conditions.
diff --git a/admin/charsets/mule-charsets.el b/admin/charsets/mule-charsets.el
index 07708bcd5a4..6234471e9eb 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, 2004, 2005, 2006, 2007, 2008, 2009, 2010 2;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
diff --git a/admin/cus-test.el b/admin/cus-test.el
index 35d0412cc43..060e100f6c4 100644
--- a/admin/cus-test.el
+++ b/admin/cus-test.el
@@ -1,6 +1,6 @@
1;;; cus-test.el --- tests for custom types and load problems 1;;; cus-test.el --- tests for custom types and load problems
2 2
3;; Copyright (C) 1998, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 3;; Copyright (C) 1998, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4;; Free Software Foundation, Inc. 4;; Free Software Foundation, Inc.
5 5
6;; Author: Markus Rost <markus.rost@mathematik.uni-regensburg.de> 6;; Author: Markus Rost <markus.rost@mathematik.uni-regensburg.de>
diff --git a/admin/diff-tar-files b/admin/diff-tar-files
index 9858fc00363..92198bad892 100755
--- a/admin/diff-tar-files
+++ b/admin/diff-tar-files
@@ -1,6 +1,6 @@
1#! /bin/sh 1#! /bin/sh
2 2
3# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 3# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4# Free Software Foundation, Inc. 4# Free Software Foundation, Inc.
5 5
6# This file is part of GNU Emacs. 6# This file is part of GNU Emacs.
diff --git a/admin/make-announcement b/admin/make-announcement
index 37ab76c0f05..180c35601b3 100755
--- a/admin/make-announcement
+++ b/admin/make-announcement
@@ -1,7 +1,7 @@
1#! /bin/bash 1#! /bin/bash
2 2
3## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 3## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4## 2010 Free Software Foundation, Inc. 4## 2010, 2011 Free Software Foundation, Inc.
5 5
6## Author: Francesco Potorti` <pot@gnu.org> 6## Author: Francesco Potorti` <pot@gnu.org>
7 7
diff --git a/admin/make-emacs b/admin/make-emacs
index 1fecaa33a69..9abfa731be5 100755
--- a/admin/make-emacs
+++ b/admin/make-emacs
@@ -2,7 +2,7 @@
2# Build Emacs with various options for profiling, debugging, 2# Build Emacs with various options for profiling, debugging,
3# with and without warnings enabled etc. 3# with and without warnings enabled etc.
4 4
5# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 5# Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
6# Free Software Foundation, Inc. 6# Free Software Foundation, Inc.
7 7
8# This file is part of GNU Emacs. 8# This file is part of GNU Emacs.
diff --git a/admin/notes/copyright b/admin/notes/copyright
index 174d124f39d..cb1c4e0b0e8 100644
--- a/admin/notes/copyright
+++ b/admin/notes/copyright
@@ -1,4 +1,4 @@
1Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 1Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
2See the end of the file for license conditions. 2See the end of the file for license conditions.
3 3
4 4
diff --git a/admin/notes/font-backend b/admin/notes/font-backend
index d3fb56a2ba4..be35693fc6e 100644
--- a/admin/notes/font-backend
+++ b/admin/notes/font-backend
@@ -1,4 +1,4 @@
1Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 1Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
2 Free Software Foundation, Inc. 2 Free Software Foundation, Inc.
3See the end of the file for license conditions. 3See the end of the file for license conditions.
4 4
diff --git a/admin/notes/lel-TODO b/admin/notes/lel-TODO
index 2e453444275..f38f9641c58 100644
--- a/admin/notes/lel-TODO
+++ b/admin/notes/lel-TODO
@@ -1,6 +1,6 @@
1Some lisp/emacs-lisp/ Features and Where They Are Documented 1Some lisp/emacs-lisp/ Features and Where They Are Documented
2 2
3Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 3Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4See the end of the file for license conditions. 4See the end of the file for license conditions.
5 5
6 6
diff --git a/admin/notes/multi-tty b/admin/notes/multi-tty
index d7f68930204..1dfc56f7a10 100644
--- a/admin/notes/multi-tty
+++ b/admin/notes/multi-tty
@@ -1,6 +1,6 @@
1-*- coding: utf-8; mode: text; -*- 1-*- coding: utf-8; mode: text; -*-
2 2
3Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 3Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4See the end of the file for license conditions. 4See the end of the file for license conditions.
5 5
6From README.multi-tty in the multi-tty branch. 6From README.multi-tty in the multi-tty branch.
diff --git a/admin/notes/unicode b/admin/notes/unicode
index a9176377dad..2ef9baf11b1 100644
--- a/admin/notes/unicode
+++ b/admin/notes/unicode
@@ -1,6 +1,6 @@
1 -*-mode: text; coding: latin-1;-*- 1 -*-mode: text; coding: latin-1;-*-
2 2
3Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 3Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc. 4 Free Software Foundation, Inc.
5See the end of the file for license conditions. 5See the end of the file for license conditions.
6 6
diff --git a/admin/nt/README-UNDUMP.W32 b/admin/nt/README-UNDUMP.W32
index 4ab34d3234f..e5dad487e13 100644
--- a/admin/nt/README-UNDUMP.W32
+++ b/admin/nt/README-UNDUMP.W32
@@ -1,4 +1,4 @@
1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
2 Free Software Foundation, Inc. 2 Free Software Foundation, Inc.
3See the end of the file for license conditions. 3See the end of the file for license conditions.
4 4
diff --git a/admin/nt/README-ftp-server b/admin/nt/README-ftp-server
index 6b6c592eab1..eab757148d8 100644
--- a/admin/nt/README-ftp-server
+++ b/admin/nt/README-ftp-server
@@ -1,4 +1,4 @@
1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
2 Free Software Foundation, Inc. 2 Free Software Foundation, Inc.
3See the end of the file for license conditions. 3See the end of the file for license conditions.
4 4
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs
index 24972e655b6..d146fdad605 100755
--- a/admin/quick-install-emacs
+++ b/admin/quick-install-emacs
@@ -1,8 +1,8 @@
1#!/bin/sh 1#!/bin/sh
2### quick-install-emacs --- do a halfway-decent job of installing emacs quickly 2### quick-install-emacs --- do a halfway-decent job of installing emacs quickly
3 3
4## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 4## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5## 2010 Free Software Foundation, Inc. 5## Free Software Foundation, Inc.
6 6
7## Author: Miles Bader <miles@gnu.org> 7## Author: Miles Bader <miles@gnu.org>
8 8
diff --git a/admin/unidata/Makefile.in b/admin/unidata/Makefile.in
index e7b0fbe4bf9..04f2f1d4380 100644
--- a/admin/unidata/Makefile.in
+++ b/admin/unidata/Makefile.in
@@ -1,5 +1,5 @@
1# Makefile -- Makefile to generate character property tables. 1# Makefile -- Makefile to generate character property tables.
2# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 2# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
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#
diff --git a/admin/unidata/makefile.w32-in b/admin/unidata/makefile.w32-in
index 58cea29db8b..1f9f276a35c 100644
--- a/admin/unidata/makefile.w32-in
+++ b/admin/unidata/makefile.w32-in
@@ -1,5 +1,5 @@
1# makefile.w32-in -- W32 -*- Makefile -*- to generate character property tables. 1# makefile.w32-in -- W32 -*- Makefile -*- to generate character property tables.
2# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 2# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
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#
diff --git a/admin/unidata/unidata-gen.el b/admin/unidata/unidata-gen.el
index 211c6f0a530..9f898668526 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, 2006, 2007, 2008, 2009, 2010 2;; Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
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
@@ -1241,7 +1241,7 @@ Property value is a character."
1241 (byte-compile describer) 1241 (byte-compile describer)
1242 (setq describer (symbol-function describer))) 1242 (setq describer (symbol-function describer)))
1243 (set-char-table-extra-slot table 3 describer)) 1243 (set-char-table-extra-slot table 3 describer))
1244 (insert ";; Copyright (C) 1991-2009, 2010 Unicode, Inc. 1244 (insert ";; Copyright (C) 1991-2009 Unicode, Inc.
1245;; This file was generated from the Unicode data file at 1245;; This file was generated from the Unicode data file at
1246;; http://www.unicode.org/Public/UNIDATA/UnicodeData.txt. 1246;; http://www.unicode.org/Public/UNIDATA/UnicodeData.txt.
1247;; See lisp/international/README for the copyright and permission notice.\n" 1247;; See lisp/international/README for the copyright and permission notice.\n"
@@ -1261,5 +1261,4 @@ Property value is a character."
1261 1261
1262 1262
1263 1263
1264;; arch-tag: 961c862e-b821-447e-9b8a-bfbab9c2d525
1265;;; unidata-gen.el ends here 1264;;; unidata-gen.el ends here