From 1ece1388ff48808035ba3e2cd8dab03cdb2dccae Mon Sep 17 00:00:00 2001 From: Michael Jennings Date: Sun, 3 Feb 2002 20:53:07 +0000 Subject: [PATCH] Sun Feb 3 15:51:38 2002 Michael Jennings (mej) Apparently I forgot to commit these copyright date changes. :( SVN revision: 5895 --- ChangeLog | 4 ++++ Eterm.spec | 2 +- configure.in | 24 ++++++++++++++++-------- src/actions.c | 2 +- src/actions.h | 2 +- src/buttons.c | 2 +- src/buttons.h | 2 +- src/draw.c | 2 +- src/draw.h | 2 +- src/e.c | 2 +- src/e.h | 2 +- src/encoding.c | 2 +- src/encoding.h | 2 +- src/eterm_debug.h | 2 +- src/eterm_utmp.h | 2 +- src/events.c | 2 +- src/events.h | 2 +- src/feature.h | 2 +- src/font.c | 2 +- src/font.h | 2 +- src/main.c | 2 +- src/menus.c | 2 +- src/menus.h | 2 +- src/misc.c | 2 +- src/misc.h | 2 +- src/mmx_cmod.S | 2 +- src/options.c | 6 +++--- src/options.h | 2 +- src/pixmap.c | 2 +- src/pixmap.h | 2 +- src/profile.h | 2 +- src/script.c | 2 +- src/script.h | 2 +- src/scrollbar.c | 2 +- src/scrollbar.h | 2 +- src/startup.c | 2 +- src/startup.h | 2 +- src/system.c | 2 +- src/system.h | 2 +- src/term.c | 2 +- src/term.h | 2 +- src/timer.c | 2 +- src/timer.h | 2 +- src/utmp.c | 2 +- src/windows.c | 2 +- src/windows.h | 2 +- utils/Etbg.c | 2 +- utils/Ettable.c | 2 +- 48 files changed, 68 insertions(+), 56 deletions(-) diff --git a/ChangeLog b/ChangeLog index a78006e..f638a45 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4479,3 +4479,7 @@ Tue Jan 29 23:46:18 2002 Michael Jennings (mej) Improved debugging of image finding problems, and improved reporting of Imlib2 load errors. ---------------------------------------------------------------------- +Sun Feb 3 15:51:38 2002 Michael Jennings (mej) + +Apparently I forgot to commit these copyright date changes. :( +---------------------------------------------------------------------- diff --git a/Eterm.spec b/Eterm.spec index 19a376d..60ada51 100644 --- a/Eterm.spec +++ b/Eterm.spec @@ -27,7 +27,7 @@ philosophy of Enlightenment. If you install Eterm, you'll also need to have the Imlib2 library installed. %prep -%setup -n %{name}-%{version} -b 0 -a 1 +%setup -a 1 %build # When using the configure macro, I also specify all the directory diff --git a/configure.in b/configure.in index d653e37..f7400e4 100644 --- a/configure.in +++ b/configure.in @@ -237,7 +237,7 @@ if test -c /dev/ptyp128 ; then PTY_MECH="SCO $PTY_MECH" fi if test "X$PTY_MECH" = "X"; then - AC_MSG_RESULT(generic pty's only) + AC_MSG_RESULT(generic only) else AC_MSG_RESULT($PTY_MECH) fi @@ -437,11 +437,15 @@ AM_CONDITIONAL(HAVE_MMX, test "x$HAVE_MMX" = "xyes") dnl# dnl# LibAST dnl# -AC_CHECK_LIB(ast, libast_malloc, FOUND_LIBAST=1, FOUND_LIBAST=0, $GRLIBS) -if test "$FOUND_LIBAST" -eq "1"; then - AC_CHECK_PROG(LIBAST_CONFIG, libast-config, libast-config, false) - test "$LIBAST_CONFIG" = "false" && FOUND_LIBAST=0 +AC_CHECK_PROG(LIBAST_CONFIG, libast-config, libast-config, false) +if test "$LIBAST_CONFIG" = "false"; then + FOUND_LIBAST=0 +else + FOUND_LIBAST=1 + CPPFLAGS="$CPPFLAGS `$LIBAST_CONFIG --cppflags`" + LDFLAGS="$LDFLAGS `$LIBAST_CONFIG --ldflags`" fi +AC_CHECK_LIB(ast, libast_malloc, FOUND_LIBAST=1, FOUND_LIBAST=0, $GRLIBS) if test "$FOUND_LIBAST" -ne "1"; then echo "ERROR: You need the LibAST package to build Eterm. If you already have it,"; @@ -474,8 +478,6 @@ if test "$FOUND_LIBAST" -eq "1"; then GRLIBS="-last $GRLIBS" AC_DEFINE(HAVE_LIBAST) test "$prefix" = "NONE" && prefix="`$LIBAST_CONFIG --prefix`" - CPPFLAGS="$CPPFLAGS `$LIBAST_CONFIG --cppflags`" - LDFLAGS="$LDFLAGS `$LIBAST_CONFIG --ldflags`" SUPPORT_FLAGS="`$LIBAST_CONFIG --support`" for i in $SUPPORT_FLAGS ; do case $i in @@ -521,9 +523,13 @@ AC_ARG_WITH(backspace, elif test "$withval" = "del"; then AC_MSG_RESULT(forcing Backspace to send Ctrl-?) AC_DEFINE(FORCE_DELETE) + elif test "$withval" = "detect" -o "$withval" = "auto"; then + AC_MSG_RESULT(attempt to auto-detect) else AC_MSG_RESULT(default) + AC_DEFINE(FORCE_BACKSPACE) fi, AC_MSG_RESULT(default) + AC_DEFINE(FORCE_BACKSPACE) ) AC_MSG_CHECKING(for delete key configuration) AC_ARG_WITH(delete, @@ -538,11 +544,13 @@ AC_ARG_WITH(delete, AC_DEFINE(NO_DELETE_KEY) elif test "$withval" = "execute"; then AC_MSG_RESULT(send execute sequence) + elif test "$withval" = "del"; then + AC_MSG_RESULT(send Ctrl-?) + AC_DEFINE_UNQUOTED(KS_DELETE, "\177") else AC_MSG_RESULT(forcing Delete to send "$withval") AC_DEFINE_UNQUOTED(KS_DELETE, "$withval") fi, AC_MSG_RESULT(default) - AC_DEFINE_UNQUOTED(KS_DELETE, "\177") ) XTERM_HOME="\033\133H" LINUX_HOME="\033\1331~" diff --git a/src/actions.c b/src/actions.c index b9e36be..ce3f500 100644 --- a/src/actions.c +++ b/src/actions.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/actions.h b/src/actions.h index a41ebea..58521a9 100644 --- a/src/actions.h +++ b/src/actions.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/buttons.c b/src/buttons.c index cbb368e..9dcb45e 100644 --- a/src/buttons.c +++ b/src/buttons.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/buttons.h b/src/buttons.h index 1fd007d..ffa2f05 100644 --- a/src/buttons.h +++ b/src/buttons.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/draw.c b/src/draw.c index a1ca5c8..70d2edc 100644 --- a/src/draw.c +++ b/src/draw.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/draw.h b/src/draw.h index 308ef9b..05d0151 100644 --- a/src/draw.h +++ b/src/draw.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/e.c b/src/e.c index e2d6e03..0d1d037 100644 --- a/src/e.c +++ b/src/e.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/e.h b/src/e.h index f3d96bf..fe2e8ef 100644 --- a/src/e.h +++ b/src/e.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/encoding.c b/src/encoding.c index a35076d..29268fa 100644 --- a/src/encoding.c +++ b/src/encoding.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/encoding.h b/src/encoding.h index 97d9657..fe0c7d2 100644 --- a/src/encoding.h +++ b/src/encoding.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/eterm_debug.h b/src/eterm_debug.h index 548b180..0d88d03 100644 --- a/src/eterm_debug.h +++ b/src/eterm_debug.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/eterm_utmp.h b/src/eterm_utmp.h index 574e90c..4683439 100644 --- a/src/eterm_utmp.h +++ b/src/eterm_utmp.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/events.c b/src/events.c index a4e426e..8da62cd 100644 --- a/src/events.c +++ b/src/events.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/events.h b/src/events.h index 6821b4c..a60d19b 100644 --- a/src/events.h +++ b/src/events.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/feature.h b/src/feature.h index f231c46..289be73 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/font.c b/src/font.c index 85ec255..e601b06 100644 --- a/src/font.c +++ b/src/font.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/font.h b/src/font.h index cccefc9..4c02e55 100644 --- a/src/font.h +++ b/src/font.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/main.c b/src/main.c index 6953608..9bab00d 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/menus.c b/src/menus.c index 7a31a0c..73bb83b 100644 --- a/src/menus.c +++ b/src/menus.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/menus.h b/src/menus.h index b602b02..e173885 100644 --- a/src/menus.h +++ b/src/menus.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/misc.c b/src/misc.c index 80cac81..4de425b 100644 --- a/src/misc.c +++ b/src/misc.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/misc.h b/src/misc.h index 91e39a9..ee124c9 100644 --- a/src/misc.h +++ b/src/misc.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/mmx_cmod.S b/src/mmx_cmod.S index 111154a..79f19c5 100644 --- a/src/mmx_cmod.S +++ b/src/mmx_cmod.S @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/options.c b/src/options.c index 963c99c..72369e4 100644 --- a/src/options.c +++ b/src/options.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to @@ -341,7 +341,7 @@ usage(void) unsigned short i, col; printf("Eterm Enlightened Terminal Emulator for the X Window System\n"); - printf("Copyright (c) 1997-2001, " AUTHORS "\n\n"); + printf("Copyright (c) 1997-2002, " AUTHORS "\n\n"); printf("Usage for " APL_NAME " " VERSION ":\n\n"); printf("%7s %17s %40s\n", "POSIX", "GNU", "Description"); printf("%8s %10s %41s\n", "=======", "===============================", @@ -381,7 +381,7 @@ version(void) { printf("Eterm " VERSION "\n"); - printf("Copyright (c) 1997-2001, " AUTHORS "\n\n"); + printf("Copyright (c) 1997-2002, " AUTHORS "\n\n"); printf("Build info:\n"); printf(" Built on " BUILD_DATE "\n"); diff --git a/src/options.h b/src/options.h index de5af42..3bdcecc 100644 --- a/src/options.h +++ b/src/options.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/pixmap.c b/src/pixmap.c index cb90335..1591bb5 100644 --- a/src/pixmap.c +++ b/src/pixmap.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/pixmap.h b/src/pixmap.h index ae047ac..fd83af0 100644 --- a/src/pixmap.h +++ b/src/pixmap.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/profile.h b/src/profile.h index 6ac1574..8d169d5 100644 --- a/src/profile.h +++ b/src/profile.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/script.c b/src/script.c index 7e58d33..163c0f9 100644 --- a/src/script.c +++ b/src/script.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/script.h b/src/script.h index f41d605..bbd8bad 100644 --- a/src/script.h +++ b/src/script.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/scrollbar.c b/src/scrollbar.c index 5abfe4e..b3d5f9c 100644 --- a/src/scrollbar.c +++ b/src/scrollbar.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/scrollbar.h b/src/scrollbar.h index 7adee1e..ca27f97 100644 --- a/src/scrollbar.h +++ b/src/scrollbar.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/startup.c b/src/startup.c index 422ef7e..ef43fe7 100644 --- a/src/startup.c +++ b/src/startup.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/startup.h b/src/startup.h index 40434a7..5b23511 100644 --- a/src/startup.h +++ b/src/startup.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/system.c b/src/system.c index 238061d..0638f36 100644 --- a/src/system.c +++ b/src/system.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/system.h b/src/system.h index 9d7c7d5..9199a80 100644 --- a/src/system.h +++ b/src/system.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/term.c b/src/term.c index b37758f..ce23281 100644 --- a/src/term.c +++ b/src/term.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/term.h b/src/term.h index 241d806..445a1b9 100644 --- a/src/term.h +++ b/src/term.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/timer.c b/src/timer.c index 37b850a..291890a 100644 --- a/src/timer.c +++ b/src/timer.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/timer.h b/src/timer.h index 0c3d7c1..e2b8b85 100644 --- a/src/timer.h +++ b/src/timer.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/utmp.c b/src/utmp.c index 6d02c4c..13bd308 100644 --- a/src/utmp.c +++ b/src/utmp.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/windows.c b/src/windows.c index d32a916..f9679ac 100644 --- a/src/windows.c +++ b/src/windows.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/src/windows.h b/src/windows.h index bc52bc4..c02a355 100644 --- a/src/windows.h +++ b/src/windows.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1997-2001, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to diff --git a/utils/Etbg.c b/utils/Etbg.c index 09109af..8fd7e9c 100644 --- a/utils/Etbg.c +++ b/utils/Etbg.c @@ -5,7 +5,7 @@ * This program is distributed under the GNU Public License (GPL) as * outlined in the COPYING file. * - * Copyright (C) 1999-2000, Brian McFee. + * Copyright (C) 1997-2000, Brian McFee. * * 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 diff --git a/utils/Ettable.c b/utils/Ettable.c index 3aff3d0..3346e14 100644 --- a/utils/Ettable.c +++ b/utils/Ettable.c @@ -4,7 +4,7 @@ * This program is distributed under the GNU Public License (GPL) as * outlined in the COPYING file. * - * Copyright (C) 1999-2000, Michael Jennings + * Copyright (C) 1997-2002, Michael Jennings * * 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