aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2011-01-15 18:21:30 -0800
committerGlenn Morris2011-01-15 18:21:30 -0800
commite9bffc61f201755de9ed46ef389379a9028f68e7 (patch)
tree9d1afd586ee49609faac4d621badbd66371f3aaa /src
parent4ff155dd40df75ac3f9d21c2d055827a76962595 (diff)
downloademacs-e9bffc61f201755de9ed46ef389379a9028f68e7.tar.gz
emacs-e9bffc61f201755de9ed46ef389379a9028f68e7.zip
Refill some copyright headers.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/README4
-rw-r--r--src/buffer.c8
-rw-r--r--src/buffer.h5
-rw-r--r--src/eval.c4
-rw-r--r--src/fileio.c7
-rw-r--r--src/font.c4
-rw-r--r--src/frame.c4
-rw-r--r--src/m/amdx86-64.h5
-rw-r--r--src/m/ia64.h6
-rw-r--r--src/m/ibmrs6000.h5
-rw-r--r--src/m/ibms390x.h4
-rw-r--r--src/m/intel386.h5
-rw-r--r--src/m/iris4d.h5
-rw-r--r--src/m/macppc.h5
-rw-r--r--src/m/sparc.h5
-rw-r--r--src/nsfns.m5
-rw-r--r--src/s/aix4-2.h4
-rw-r--r--src/s/bsd-common.h5
-rw-r--r--src/s/darwin.h5
-rw-r--r--src/s/gnu-linux.h3
-rw-r--r--src/s/gnu.h5
-rw-r--r--src/s/hpux10-20.h5
-rw-r--r--src/s/netbsd.h4
-rw-r--r--src/w16select.c5
-rw-r--r--src/w32select.c5
-rw-r--r--src/w32term.c7
-rw-r--r--src/xfaces.c4
-rw-r--r--src/xfns.c7
-rw-r--r--src/xterm.c5
30 files changed, 88 insertions, 61 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1cb53d1c6a2..75ce2788915 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -29512,7 +29512,8 @@ See ChangeLog.10 for earlier changes.
29512;; coding: utf-8 29512;; coding: utf-8
29513;; End: 29513;; End:
29514 29514
29515 Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 29515 Copyright (C) 2007, 2008, 2009, 2010, 2011
29516 Free Software Foundation, Inc.
29516 29517
29517 This file is part of GNU Emacs. 29518 This file is part of GNU Emacs.
29518 29519
@@ -29528,4 +29529,3 @@ See ChangeLog.10 for earlier changes.
29528 29529
29529 You should have received a copy of the GNU General Public License 29530 You should have received a copy of the GNU General Public License
29530 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 29531 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29531
diff --git a/src/README b/src/README
index 354f1bf07ac..238e69308f3 100644
--- a/src/README
+++ b/src/README
@@ -1,5 +1,5 @@
1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 1Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
2 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/src/buffer.c b/src/buffer.c
index 52b76fae575..a87f0ffc943 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1,8 +1,8 @@
1/* Buffer manipulation primitives for GNU Emacs. 1/* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 2
3 1995, 1997, 1998, 1999, 2000, 2001, 2002, 3Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997,
4 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5 Free Software Foundation, Inc. 5 2009, 2010, 2011 Free Software Foundation, Inc.
6 6
7This file is part of GNU Emacs. 7This file is part of GNU Emacs.
8 8
diff --git a/src/buffer.h b/src/buffer.h
index cdc5fba58a8..570d7f1a64e 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -1,6 +1,7 @@
1/* Header file for the buffer manipulation primitives. 1/* Header file for the buffer manipulation primitives.
2 Copyright (C) 1985, 1986, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2
3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 3Copyright (C) 1985, 1986, 1993, 1994, 1995, 1997, 1998, 1999, 2000,
4 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc. 5 Free Software Foundation, Inc.
5 6
6This file is part of GNU Emacs. 7This file is part of GNU Emacs.
diff --git a/src/eval.c b/src/eval.c
index b9e1ce894d3..709a54fc2ec 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1,7 +1,7 @@
1/* Evaluator for GNU Emacs Lisp interpreter. 1/* Evaluator for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1999, 2000, 2001, 2 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 Free Software Foundation, Inc. 4 2011 Free Software Foundation, Inc.
5 5
6This file is part of GNU Emacs. 6This file is part of GNU Emacs.
7 7
diff --git a/src/fileio.c b/src/fileio.c
index 9ec7a8a3449..53bc652f51d 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -1,7 +1,8 @@
1/* File IO for GNU Emacs. 1/* File IO for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996, 2
3 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 3Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1997,
4 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 4 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5 2009, 2010, 2011 Free Software Foundation, Inc.
5 6
6This file is part of GNU Emacs. 7This file is part of GNU Emacs.
7 8
diff --git a/src/font.c b/src/font.c
index 667a23e4b56..6ab349e763d 100644
--- a/src/font.c
+++ b/src/font.c
@@ -1,5 +1,7 @@
1/* font.c -- "Font" primitives. 1/* font.c -- "Font" primitives.
2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 2
3Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
3 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 5 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
4 National Institute of Advanced Industrial Science and Technology (AIST) 6 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H13PRO009 7 Registration Number H13PRO009
diff --git a/src/frame.c b/src/frame.c
index d1c5065ee8c..ac15dedf716 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1,6 +1,8 @@
1/* Generic frame functions. 1/* Generic frame functions.
2
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 3 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
3 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 4 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
4 6
5This file is part of GNU Emacs. 7This file is part of GNU Emacs.
6 8
diff --git a/src/m/amdx86-64.h b/src/m/amdx86-64.h
index 6ecd593058b..ff3d6171db8 100644
--- a/src/m/amdx86-64.h
+++ b/src/m/amdx86-64.h
@@ -1,6 +1,7 @@
1/* machine description file for AMD x86-64. 1/* machine description file for AMD x86-64.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 2
3 Free Software Foundation, Inc. 3Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/m/ia64.h b/src/m/ia64.h
index a550dbe3c4c..7aed9fa36df 100644
--- a/src/m/ia64.h
+++ b/src/m/ia64.h
@@ -1,6 +1,8 @@
1/* machine description file for the IA-64 architecture. 1/* machine description file for the IA-64 architecture.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 2009, 2010, 2011 Free Software Foundation, Inc.
5
4 Contributed by David Mosberger <davidm@hpl.hp.com> 6 Contributed by David Mosberger <davidm@hpl.hp.com>
5 7
6This file is part of GNU Emacs. 8This file is part of GNU Emacs.
diff --git a/src/m/ibmrs6000.h b/src/m/ibmrs6000.h
index 8ad9cf7351e..13eea3d44f0 100644
--- a/src/m/ibmrs6000.h
+++ b/src/m/ibmrs6000.h
@@ -1,6 +1,7 @@
1/* R2 AIX machine/system dependent defines 1/* R2 AIX machine/system dependent defines
2 Copyright (C) 1988, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1988, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/m/ibms390x.h b/src/m/ibms390x.h
index 97bf28da6b2..854bcdaed07 100644
--- a/src/m/ibms390x.h
+++ b/src/m/ibms390x.h
@@ -1,7 +1,7 @@
1/* Machine description file for IBM S390 in 64-bit mode 1/* Machine description file for IBM S390 in 64-bit mode
2 2
3Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 3Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
4 Free Software Foundation, Inc. 4 2011 Free Software Foundation, Inc.
5 5
6This file is part of GNU Emacs. 6This file is part of GNU Emacs.
7 7
diff --git a/src/m/intel386.h b/src/m/intel386.h
index 561077b6089..732e89328fc 100644
--- a/src/m/intel386.h
+++ b/src/m/intel386.h
@@ -1,6 +1,7 @@
1/* Machine description file for intel 386. 1/* Machine description file for intel 386.
2 Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/m/iris4d.h b/src/m/iris4d.h
index ff0728af276..0b1c2f360b0 100644
--- a/src/m/iris4d.h
+++ b/src/m/iris4d.h
@@ -1,6 +1,7 @@
1/* machine description file for Iris-4D machines. Use with s/irix*.h. 1/* machine description file for Iris-4D machines. Use with s/irix*.h.
2 Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/m/macppc.h b/src/m/macppc.h
index 9612ec58c5b..895a6981975 100644
--- a/src/m/macppc.h
+++ b/src/m/macppc.h
@@ -1,6 +1,7 @@
1/* machine description file For the powerpc Macintosh. 1/* machine description file For the powerpc Macintosh.
2 Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/m/sparc.h b/src/m/sparc.h
index 1a4f45840c5..e1eb9eedb20 100644
--- a/src/m/sparc.h
+++ b/src/m/sparc.h
@@ -1,6 +1,7 @@
1/* machine description file for Sun 4 SPARC. 1/* machine description file for Sun 4 SPARC.
2 Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1987, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/nsfns.m b/src/nsfns.m
index 6b8276e1b87..b98f8bc815f 100644
--- a/src/nsfns.m
+++ b/src/nsfns.m
@@ -1,6 +1,7 @@
1/* Functions for the NeXT/Open/GNUstep and MacOSX window system. 1/* Functions for the NeXT/Open/GNUstep and MacOSX window system.
2 Copyright (C) 1989, 1992, 1993, 1994, 2005, 2006, 2008, 2009, 2010, 2011 2
3 Free Software Foundation, Inc. 3Copyright (C) 1989, 1992, 1993, 1994, 2005, 2006, 2008, 2009, 2010,
4 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/s/aix4-2.h b/src/s/aix4-2.h
index d472e59965c..2c2a4be2d58 100644
--- a/src/s/aix4-2.h
+++ b/src/s/aix4-2.h
@@ -1,6 +1,6 @@
1/* 1/*
2Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 2Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
3 Free Software Foundation, Inc. 3 2010, 2011 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
diff --git a/src/s/bsd-common.h b/src/s/bsd-common.h
index 36c28ef6c13..d0bdb566dd9 100644
--- a/src/s/bsd-common.h
+++ b/src/s/bsd-common.h
@@ -1,6 +1,7 @@
1/* Definitions file for GNU Emacs running on bsd 4.3 1/* Definitions file for GNU Emacs running on bsd 4.3
2 Copyright (C) 1985, 1986, 2001, 2002, 2003, 2004, 2005, 2006, 2
3 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1985, 1986, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/s/darwin.h b/src/s/darwin.h
index 5a444dc28c7..74ac808acdb 100644
--- a/src/s/darwin.h
+++ b/src/s/darwin.h
@@ -1,6 +1,7 @@
1/* System description header file for Darwin (Mac OS X). 1/* System description header file for Darwin (Mac OS X).
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h
index d21eaa88ebf..a102f602bd7 100644
--- a/src/s/gnu-linux.h
+++ b/src/s/gnu-linux.h
@@ -1,7 +1,8 @@
1/* This file is the configuration file for Linux-based GNU systems 1/* This file is the configuration file for Linux-based GNU systems
2 2
3Copyright (C) 1985, 1986, 1992, 1994, 1996, 1999, 2001, 2002, 2003, 2004, 3Copyright (C) 1985, 1986, 1992, 1994, 1996, 1999, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 4 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
5 6
6This file was put together by Michael K. Johnson and Rik Faith. 7This file was put together by Michael K. Johnson and Rik Faith.
7 8
diff --git a/src/s/gnu.h b/src/s/gnu.h
index f2365476050..9e46d100d46 100644
--- a/src/s/gnu.h
+++ b/src/s/gnu.h
@@ -1,6 +1,7 @@
1/* Definitions file for GNU Emacs running on the GNU Hurd. 1/* Definitions file for GNU Emacs running on the GNU Hurd.
2 Copyright (C) 1994, 1995, 1996, 2001, 2002, 2003, 2004, 2005, 2006, 2
3 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1994, 1995, 1996, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/s/hpux10-20.h b/src/s/hpux10-20.h
index 168736b185c..f6eb2ddfd11 100644
--- a/src/s/hpux10-20.h
+++ b/src/s/hpux10-20.h
@@ -1,6 +1,7 @@
1/* System description file for hpux version 10.20. 1/* System description file for hpux version 10.20.
2 Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2
3 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/s/netbsd.h b/src/s/netbsd.h
index 8dad20ac961..a469cc228f6 100644
--- a/src/s/netbsd.h
+++ b/src/s/netbsd.h
@@ -1,7 +1,7 @@
1/* s/ file for netbsd system. 1/* s/ file for netbsd system.
2 2
3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 3Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
4 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 4 2010, 2011 Free Software Foundation, Inc.
5 5
6This file is part of GNU Emacs. 6This file is part of GNU Emacs.
7 7
diff --git a/src/w16select.c b/src/w16select.c
index 6882a8b7edf..0b39af01574 100644
--- a/src/w16select.c
+++ b/src/w16select.c
@@ -1,6 +1,7 @@
1/* 16-bit Windows Selection processing for emacs on MS-Windows 1/* 16-bit Windows Selection processing for emacs on MS-Windows
2 Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, 2
3 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/w32select.c b/src/w32select.c
index 88996e12926..369f49ebbeb 100644
--- a/src/w32select.c
+++ b/src/w32select.c
@@ -1,6 +1,7 @@
1/* Selection processing for Emacs on the Microsoft W32 API. 1/* Selection processing for Emacs on the Microsoft W32 API.
2 Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, 2
3 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 3Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 5
5This file is part of GNU Emacs. 6This file is part of GNU Emacs.
6 7
diff --git a/src/w32term.c b/src/w32term.c
index f411a78b2d9..3cf4a0e9657 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -1,7 +1,8 @@
1/* Implementation of GUI terminal on the Microsoft W32 API. 1/* Implementation of GUI terminal on the Microsoft W32 API.
2 Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 2
3 1999, 2000, 2001, 2002, 2003, 2004, 2005, 3Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 4 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
5 6
6This file is part of GNU Emacs. 7This file is part of GNU Emacs.
7 8
diff --git a/src/xfaces.c b/src/xfaces.c
index 58027799c2d..9d3c5927d6c 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -1,6 +1,8 @@
1/* xfaces.c -- "Face" primitives. 1/* xfaces.c -- "Face" primitives.
2
2 Copyright (C) 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 3 Copyright (C) 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 4 2005, 2006, 2007, 2008, 2009, 2010, 2011
5 Free Software Foundation, Inc.
4 6
5This file is part of GNU Emacs. 7This file is part of GNU Emacs.
6 8
diff --git a/src/xfns.c b/src/xfns.c
index 8c4ac2210fc..88a73804a39 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -1,7 +1,8 @@
1/* Functions for the X window system. 1/* Functions for the X window system.
2 Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 3Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 Free Software Foundation, Inc. 4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
5 2011 Free Software Foundation, Inc.
5 6
6This file is part of GNU Emacs. 7This file is part of GNU Emacs.
7 8
diff --git a/src/xterm.c b/src/xterm.c
index 4a19a6c36c9..6ea9f8303b8 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -1,6 +1,7 @@
1/* X Communication module for terminals which understand the X protocol. 1/* X Communication module for terminals which understand the X protocol.
2 Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2
3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 3Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc. 5 Free Software Foundation, Inc.
5 6
6This file is part of GNU Emacs. 7This file is part of GNU Emacs.