summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsabetts <sabetts>2004-12-04 03:33:24 +0000
committersabetts <sabetts>2004-12-04 03:33:24 +0000
commitefd915268006959e51e21585f73925a0a8cf8b7b (patch)
treea20e98ae8bf9ad7571afc0d253f40161c8fa762f /src
parent85dd9fc3650b1a161d2bec5eb04c33e1dfb6f445 (diff)
downloadratpoison-efd915268006959e51e21585f73925a0a8cf8b7b.zip
update copyright.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
-rw-r--r--src/actions.c4
-rw-r--r--src/actions.h2
-rw-r--r--src/bar.c2
-rw-r--r--src/bar.h2
-rw-r--r--src/communications.c2
-rw-r--r--src/communications.h2
-rw-r--r--src/completions.c2
-rw-r--r--src/completions.h2
-rw-r--r--src/conf.h2
-rw-r--r--src/data.h2
-rw-r--r--src/editor.c2
-rw-r--r--src/editor.h2
-rw-r--r--src/events.c2
-rw-r--r--src/events.h2
-rw-r--r--src/frame.c2
-rw-r--r--src/frame.h2
-rw-r--r--src/globals.c2
-rw-r--r--src/globals.h2
-rw-r--r--src/group.c2
-rw-r--r--src/group.h2
-rw-r--r--src/history.c2
-rw-r--r--src/history.h2
-rw-r--r--src/hook.c2
-rw-r--r--src/hook.h2
-rw-r--r--src/input.c2
-rw-r--r--src/input.h2
-rw-r--r--src/linkedlist.c2
-rw-r--r--src/linkedlist.h2
-rw-r--r--src/main.c4
-rw-r--r--src/manage.c2
-rw-r--r--src/manage.h2
-rw-r--r--src/messages.h2
-rw-r--r--src/number.c2
-rw-r--r--src/number.h2
-rw-r--r--src/ratpoison.h2
-rw-r--r--src/sbuf.c2
-rw-r--r--src/sbuf.h2
-rw-r--r--src/screen.c2
-rw-r--r--src/screen.h2
-rw-r--r--src/split.c2
-rw-r--r--src/split.h2
-rw-r--r--src/window.c2
-rw-r--r--src/window.h2
44 files changed, 47 insertions, 47 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 3efb703..500306f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
-## Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+## Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
##
## This file is part of ratpoison.
##
@@ -17,7 +17,7 @@
## along with this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##
-## $Id: Makefile.am,v 1.21 2004/12/02 00:22:39 sabetts Exp $
+## $Id: Makefile.am,v 1.22 2004/12/04 03:33:24 sabetts Exp $
bin_PROGRAMS = ratpoison
diff --git a/src/actions.c b/src/actions.c
index f47c3d8..6ff29a1 100644
--- a/src/actions.c
+++ b/src/actions.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
@@ -2097,7 +2097,7 @@ cmd_license (int interactive, char *data)
int max_width = 0;
char *license_text[] = { PACKAGE " " VERSION, "(built " __DATE__ " " __TIME__ ")",
"",
- "Copyright (C) 2000-2004 Shawn Betts",
+ "Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts",
"",
"ratpoison is free software; you can redistribute it and/or modify ",
"it under the terms of the GNU General Public License as published by ",
diff --git a/src/actions.h b/src/actions.h
index 67d3157..028edf1 100644
--- a/src/actions.h
+++ b/src/actions.h
@@ -1,5 +1,5 @@
/* Prototypes of all actions that can be performed with keystrokes.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/bar.c b/src/bar.c
index 080bf9b..fd92fda 100644
--- a/src/bar.c
+++ b/src/bar.c
@@ -1,7 +1,7 @@
/* Functionality for a bar across the bottom of the screen listing the
* windows currently managed.
*
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/bar.h b/src/bar.h
index 26232c0..3c0f3ce 100644
--- a/src/bar.h
+++ b/src/bar.h
@@ -1,5 +1,5 @@
/* functions for managing the program bar
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/communications.c b/src/communications.c
index 6926053..52718ab 100644
--- a/src/communications.c
+++ b/src/communications.c
@@ -1,5 +1,5 @@
/* communications.c -- Send commands to a running copy of ratpoison.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/communications.h b/src/communications.h
index f24d6ae..6cdd33c 100644
--- a/src/communications.h
+++ b/src/communications.h
@@ -1,5 +1,5 @@
/* communications.h -- Send commands to a running copy of ratpoison.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/completions.c b/src/completions.c
index e537a05..db8d75a 100644
--- a/src/completions.c
+++ b/src/completions.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/completions.h b/src/completions.h
index 8496995..d3c44af 100644
--- a/src/completions.h
+++ b/src/completions.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/conf.h b/src/conf.h
index 6bd6e3e..9475182 100644
--- a/src/conf.h
+++ b/src/conf.h
@@ -1,5 +1,5 @@
/* Config file for ratpoison. Edit these values and recompile.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/data.h b/src/data.h
index 3aa1d64..81a3edb 100644
--- a/src/data.h
+++ b/src/data.h
@@ -1,5 +1,5 @@
/* our datatypes and global variables
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/editor.c b/src/editor.c
index b02cd6a..9a04e8b 100644
--- a/src/editor.c
+++ b/src/editor.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/editor.h b/src/editor.h
index 605b2cd..b2cf558 100644
--- a/src/editor.h
+++ b/src/editor.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/events.c b/src/events.c
index d41b113..c7498b1 100644
--- a/src/events.c
+++ b/src/events.c
@@ -1,5 +1,5 @@
/* Ratpoison X events
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/events.h b/src/events.h
index e9489a1..ce1d61b 100644
--- a/src/events.h
+++ b/src/events.h
@@ -1,5 +1,5 @@
/* Function prototypes
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/frame.c b/src/frame.c
index 0ea4b3f..531258b 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1,5 +1,5 @@
/* functions that manipulate the frame structure.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/frame.h b/src/frame.h
index 66f10f9..44c67e3 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/globals.c b/src/globals.c
index 7f419e7..bc369ae 100644
--- a/src/globals.c
+++ b/src/globals.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/globals.h b/src/globals.h
index d854345..45cb54c 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/group.c b/src/group.c
index 45ae710..58c4cd7 100644
--- a/src/group.c
+++ b/src/group.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/group.h b/src/group.h
index 7da1816..f0c17dd 100644
--- a/src/group.h
+++ b/src/group.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/history.c b/src/history.c
index cf427cf..4f283f1 100644
--- a/src/history.c
+++ b/src/history.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/history.h b/src/history.h
index 0f5c0e7..6752c2c 100644
--- a/src/history.h
+++ b/src/history.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/hook.c b/src/hook.c
index f3a1b35..bbb2ce5 100644
--- a/src/hook.c
+++ b/src/hook.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/hook.h b/src/hook.h
index e14d5a8..738bf99 100644
--- a/src/hook.h
+++ b/src/hook.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/input.c b/src/input.c
index 8cf0ef5..dbfd5db 100644
--- a/src/input.c
+++ b/src/input.c
@@ -1,5 +1,5 @@
/* Read kdb input from the user.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/input.h b/src/input.h
index d1b3fa3..c5115a4 100644
--- a/src/input.h
+++ b/src/input.h
@@ -1,5 +1,5 @@
/* Function prototypes.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/linkedlist.c b/src/linkedlist.c
index ecb56eb..cffa61a 100644
--- a/src/linkedlist.c
+++ b/src/linkedlist.c
@@ -2,7 +2,7 @@
* Copyright (C) 2003 Linus Torvalds
*
* Modified by Shawn Betts. Portions created by Shawn Betts are
- * Copyright (C) 2003-2004 Shawn Betts
+ * Copyright (C) 2003, 2004 Shawn Betts
*
* This file is part of ratpoison.
*
diff --git a/src/linkedlist.h b/src/linkedlist.h
index e8d1322..cd450bd 100644
--- a/src/linkedlist.h
+++ b/src/linkedlist.h
@@ -2,7 +2,7 @@
* Copyright (C) 2003 Linus Torvalds
*
* Modified by Shawn Betts. Portions created by Shawn Betts are
- * Copyright (C) 2003-2004 Shawn Betts
+ * Copyright (C) 2003, 2004 Shawn Betts
*
* This file is part of ratpoison.
*
diff --git a/src/main.c b/src/main.c
index 8742acf..945f852 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,5 +1,5 @@
/* Ratpoison.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
@@ -276,7 +276,7 @@ void
print_version ()
{
printf ("%s %s\n", PACKAGE, VERSION);
- printf ("Copyright (C) 2000-2004 Shawn Betts\n\n");
+ printf ("Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts\n\n");
exit (EXIT_SUCCESS);
}
diff --git a/src/manage.c b/src/manage.c
index 87407d1..23842da 100644
--- a/src/manage.c
+++ b/src/manage.c
@@ -1,7 +1,7 @@
/* Manage windows, such as Mapping them and making sure the proper key
* Grabs have been put in place.
*
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/manage.h b/src/manage.h
index 69fcd3f..ba49d34 100644
--- a/src/manage.h
+++ b/src/manage.h
@@ -1,5 +1,5 @@
/* manage.h
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/messages.h b/src/messages.h
index 5c7f46c..f4fa14e 100644
--- a/src/messages.h
+++ b/src/messages.h
@@ -1,5 +1,5 @@
/* Ratpoison messages.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/number.c b/src/number.c
index 27f57d0..7fb48c9 100644
--- a/src/number.c
+++ b/src/number.c
@@ -1,5 +1,5 @@
/* handles the handing out of and uniqueness of window numbers.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/number.h b/src/number.h
index 3b89b37..585411b 100644
--- a/src/number.h
+++ b/src/number.h
@@ -1,5 +1,5 @@
/* Function prototypes.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/ratpoison.h b/src/ratpoison.h
index 8896f4a..89a8059 100644
--- a/src/ratpoison.h
+++ b/src/ratpoison.h
@@ -1,5 +1,5 @@
/* Standard header for ratpoison.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/sbuf.c b/src/sbuf.c
index 662fd64..640b283 100644
--- a/src/sbuf.c
+++ b/src/sbuf.c
@@ -1,5 +1,5 @@
/* Functions for handling string buffers.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/sbuf.h b/src/sbuf.h
index 23d56d1..66be1d1 100644
--- a/src/sbuf.h
+++ b/src/sbuf.h
@@ -1,5 +1,5 @@
/* Function prototypes for handling string buffers.
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/screen.c b/src/screen.c
index 095bb48..0cf47a2 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/screen.h b/src/screen.h
index 04fbd8c..be319fa 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/split.c b/src/split.c
index 8eb00e0..e481670 100644
--- a/src/split.c
+++ b/src/split.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/split.h b/src/split.h
index e0f7983..940bd45 100644
--- a/src/split.h
+++ b/src/split.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+/* Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/window.c b/src/window.c
index 3cfa107..d5d191d 100644
--- a/src/window.c
+++ b/src/window.c
@@ -1,5 +1,5 @@
/* functions for handling the window list
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*
diff --git a/src/window.h b/src/window.h
index a778cee..650ade1 100644
--- a/src/window.h
+++ b/src/window.h
@@ -1,5 +1,5 @@
/* functions for managing the window list
- * Copyright (C) 2000-2004 Shawn Betts <sabetts@vcn.bc.ca>
+ * Copyright (C) 2000, 2001, 2002, 2003, 2004 Shawn Betts <sabetts@vcn.bc.ca>
*
* This file is part of ratpoison.
*