diff --git a/CHANGES b/CHANGES
index 3b9261292e66d526212245e4dcaf766ad6cdb74d..e0fc3eb6a4b35f829c3da93eebc32a75281254b3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,28 @@
+CHANGES SINCE FLTK 1.0.10
+
+	- Fl_Gl_Window does not set drawbuffer(BACKBUFFER) for
+	  single-buffered windows.
+
+	- Fl_Input::replace(...) correctly updates the display
+	  if the replaced region does not include the mark,
+	  point, or selected region.
+
+	- Added Fl::add_check(...), Fl::remove_check, and
+	  Fl::has_check. These are similar to idle callbacks but
+	  are only called just before it waits for new events.
+	  They can be used to watch for changes in global state
+	  and respond to them.
+
+	- "accu-timer": some changes to repeat_timeout that seem
+	  to make it accurate on Unix and Win32 at speeds up to
+	  500000 timeouts/second (and 700000 on Linux), and
+	  within about .001% as accurate as the system clock.
+
+	- Fix to Fl_Valuator::step() by Guillermo Andrade.
+
+	- Fixed the write-menu bug introduced in 1.0.10
+
+
 CHANGES SINCE FLTK 1.0.9
 
 	- Added a strcasecmp() function to FLUID; AIX doesn't
diff --git a/FL/Enumerations.H b/FL/Enumerations.H
index 97fd66479930846d6590fb70472fbb03f04e62d8..71188640ffcfeb2ed93a7e8357ef3c5a97eaefdf 100644
--- a/FL/Enumerations.H
+++ b/FL/Enumerations.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Enumerations.H,v 1.18.2.13 2000/11/20 14:53:52 easysw Exp $"
+// "$Id: Enumerations.H,v 1.18.2.14 2001/01/22 15:13:37 easysw Exp $"
 //
 // Enumerations for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -56,7 +56,7 @@
 
 #define FL_MAJOR_VERSION	1
 #define FL_MINOR_VERSION	0
-#define FL_PATCH_VERSION	10
+#define FL_PATCH_VERSION	11
 #define FL_VERSION		((double)FL_MAJOR_VERSION + \
 				 (double)FL_MINOR_VERSION * 0.01 + \
 				 (double)FL_PATCH_VERSION * 0.0001)
@@ -371,5 +371,5 @@ enum Fl_Damage {
 #endif
 
 //
-// End of "$Id: Enumerations.H,v 1.18.2.13 2000/11/20 14:53:52 easysw Exp $".
+// End of "$Id: Enumerations.H,v 1.18.2.14 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl.H b/FL/Fl.H
index a674d61f12cc03ccb1532a2e2b89816324021626..e839c139a71714b0f01bce476df1e392eb6e59b8 100644
--- a/FL/Fl.H
+++ b/FL/Fl.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl.H,v 1.8.2.10 2000/12/12 08:57:29 spitzak Exp $"
+// "$Id: Fl.H,v 1.8.2.11 2001/01/22 15:13:37 easysw Exp $"
 //
 // Main header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -217,5 +217,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl.H,v 1.8.2.10 2000/12/12 08:57:29 spitzak Exp $".
+// End of "$Id: Fl.H,v 1.8.2.11 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Adjuster.H b/FL/Fl_Adjuster.H
index 123956fe6de45b96e6c7c9a30245dbb7b74badae..03e3b33b20f7e7cd2b05d42694a6bd906893f663 100644
--- a/FL/Fl_Adjuster.H
+++ b/FL/Fl_Adjuster.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
+// "$Id: Fl_Adjuster.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Adjuster widget header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -49,5 +49,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Adjuster.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
+// End of "$Id: Fl_Adjuster.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Bitmap.H b/FL/Fl_Bitmap.H
index d9d45d817c182e6cc6c70278b83f24bfb0d6f863..994b31d2f009c314afe6a8c623632c9e3d9926f4 100644
--- a/FL/Fl_Bitmap.H
+++ b/FL/Fl_Bitmap.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $"
+// "$Id: Fl_Bitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Bitmap header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -47,5 +47,5 @@ struct Fl_Bitmap {
 #endif
 
 //
-// End of "$Id: Fl_Bitmap.H,v 1.5.2.2 2000/06/05 21:20:19 mike Exp $".
+// End of "$Id: Fl_Bitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Box.H b/FL/Fl_Box.H
index 3dec60de6426209b03c0637fc091201df84c0841..9eeea02c385ce910fa0a077e3dd4e60f6da9bd6d 100644
--- a/FL/Fl_Box.H
+++ b/FL/Fl_Box.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Box.H,v 1.5.2.3 2000/06/10 19:29:58 carl Exp $"
+// "$Id: Fl_Box.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Box header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -43,5 +43,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Box.H,v 1.5.2.3 2000/06/10 19:29:58 carl Exp $".
+// End of "$Id: Fl_Box.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Browser.H b/FL/Fl_Browser.H
index 735e13e921eb050e4cca84d428e334801fd25bcc..e23073324c227cd915b811d7149a014cb2e6f9d4 100644
--- a/FL/Fl_Browser.H
+++ b/FL/Fl_Browser.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Browser.H,v 1.8.2.6 2000/08/19 17:10:47 spitzak Exp $"
+// "$Id: Fl_Browser.H,v 1.8.2.7 2001/01/22 15:13:37 easysw Exp $"
 //
 // Browser header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -119,5 +119,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Browser.H,v 1.8.2.6 2000/08/19 17:10:47 spitzak Exp $".
+// End of "$Id: Fl_Browser.H,v 1.8.2.7 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Browser_.H b/FL/Fl_Browser_.H
index 9bfe5cc27963bb6de92f533160d19b29af59b3e7..61aa17c5367c98179dbb7e8fcf78d49605f36a71 100644
--- a/FL/Fl_Browser_.H
+++ b/FL/Fl_Browser_.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Browser_.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $"
+// "$Id: Fl_Browser_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Common browser header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -146,5 +146,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Browser_.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $".
+// End of "$Id: Fl_Browser_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Button.H b/FL/Fl_Button.H
index f5eb0aba76923d3e5c9144457e22a21a3924fd18..32a361099fe32da8ad3eefc486699be306a0849d 100644
--- a/FL/Fl_Button.H
+++ b/FL/Fl_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
+// "$Id: Fl_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -71,5 +71,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $".
+// End of "$Id: Fl_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Chart.H b/FL/Fl_Chart.H
index 52d077c9d611303f379c69c043802170d4e0339b..4ae92d0c9aba3418745fb04d66fff6dccdb4e2e6 100644
--- a/FL/Fl_Chart.H
+++ b/FL/Fl_Chart.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $"
+// "$Id: Fl_Chart.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Forms chart header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -84,5 +84,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Chart.H,v 1.6.2.2 2000/06/05 21:20:20 mike Exp $".
+// End of "$Id: Fl_Chart.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Check_Button.H b/FL/Fl_Check_Button.H
index e1ca418566c86178d9d07f779be5fee89f58ac76..7726772a569956857b8df2ac224fc4e73283d1ca 100644
--- a/FL/Fl_Check_Button.H
+++ b/FL/Fl_Check_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $"
+// "$Id: Fl_Check_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Check button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -36,5 +36,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Check_Button.H,v 1.5.2.2 2000/06/05 21:20:20 mike Exp $".
+// End of "$Id: Fl_Check_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Choice.H b/FL/Fl_Choice.H
index 90ceb857737240912e9f4abb8e58b2faad9a0e1c..7835b9856d500bd2e42cddc2d0280b705c286989 100644
--- a/FL/Fl_Choice.H
+++ b/FL/Fl_Choice.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
+// "$Id: Fl_Choice.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Choice header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -41,5 +41,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Choice.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
+// End of "$Id: Fl_Choice.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Clock.H b/FL/Fl_Clock.H
index c665c733a57b68efd18455af4ba758e2c534109c..a023d74dc8a3b85103fb479b72bbbc1225155a71 100644
--- a/FL/Fl_Clock.H
+++ b/FL/Fl_Clock.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Clock.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $"
+// "$Id: Fl_Clock.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Clock header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -69,5 +69,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Clock.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $".
+// End of "$Id: Fl_Clock.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Color_Chooser.H b/FL/Fl_Color_Chooser.H
index d882a389147e20db9bb648c0671552ce12fcd0bd..b089cccf4eb05df0b1ef96129fb27da8481d5c96 100644
--- a/FL/Fl_Color_Chooser.H
+++ b/FL/Fl_Color_Chooser.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Color_Chooser.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $"
+// "$Id: Fl_Color_Chooser.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Color chooser header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -96,5 +96,5 @@ FL_EXPORT int fl_color_chooser(const char* name, uchar& r, uchar& g, uchar& b);
 #endif
 
 //
-// End of "$Id: Fl_Color_Chooser.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $".
+// End of "$Id: Fl_Color_Chooser.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Counter.H b/FL/Fl_Counter.H
index 025e0860e3a3026495551fc244c2fecded6503aa..4453c9f1c84005f81e8b4ca34b2b64b8f5ed4084 100644
--- a/FL/Fl_Counter.H
+++ b/FL/Fl_Counter.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $"
+// "$Id: Fl_Counter.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Counter header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -69,5 +69,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Counter.H,v 1.5.2.2 2000/06/05 21:20:21 mike Exp $".
+// End of "$Id: Fl_Counter.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Dial.H b/FL/Fl_Dial.H
index eddb36c06cebff90a975715fd8fbbdffbc5363e2..acc71309f9dd59386a41c091b4435dd3bf0f9047 100644
--- a/FL/Fl_Dial.H
+++ b/FL/Fl_Dial.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
+// "$Id: Fl_Dial.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Dial header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -61,5 +61,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Dial.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $".
+// End of "$Id: Fl_Dial.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Double_Window.H b/FL/Fl_Double_Window.H
index 1aebda095013fdef08d8f3388b548763052fcb5f..6cf89293303546565098e66244fb973cd6cb8dc9 100644
--- a/FL/Fl_Double_Window.H
+++ b/FL/Fl_Double_Window.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $"
+// "$Id: Fl_Double_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Double-buffered window header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -46,5 +46,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Double_Window.H,v 1.7.2.2 2000/06/05 21:20:22 mike Exp $".
+// End of "$Id: Fl_Double_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Fill_Dial.H b/FL/Fl_Fill_Dial.H
index 64dd80e811850c8e2ee9464a8604800bb21a1fd4..c66e3995610d4e9ff35a08b347cc13aae33641a4 100644
--- a/FL/Fl_Fill_Dial.H
+++ b/FL/Fl_Fill_Dial.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
+// "$Id: Fl_Fill_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Filled dial header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Fill_Dial.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
+// End of "$Id: Fl_Fill_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Fill_Slider.H b/FL/Fl_Fill_Slider.H
index cf21b43667c66702e09bdf619c9fe9f0a2479ed6..0169ab06827106fa5337df882376a98f403c13ad 100644
--- a/FL/Fl_Fill_Slider.H
+++ b/FL/Fl_Fill_Slider.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
+// "$Id: Fl_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Filled slider header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
+// End of "$Id: Fl_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Float_Input.H b/FL/Fl_Float_Input.H
index b656ee1f8b273d33cfa3aecee0f13b0831e52314..b2087a2c699e17bb2b6f8becb3ff745c73604bb8 100644
--- a/FL/Fl_Float_Input.H
+++ b/FL/Fl_Float_Input.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $"
+// "$Id: Fl_Float_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Floating point input header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Float_Input.H,v 1.4.2.2 2000/06/05 21:20:22 mike Exp $".
+// End of "$Id: Fl_Float_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_FormsBitmap.H b/FL/Fl_FormsBitmap.H
index dc208be95e738b643dff585fe530733b2cde1bac..9cca91e9343503b25df299aed92129dc2456ea83 100644
--- a/FL/Fl_FormsBitmap.H
+++ b/FL/Fl_FormsBitmap.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $"
+// "$Id: Fl_FormsBitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Forms bitmap header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -42,5 +42,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_FormsBitmap.H,v 1.5.2.2 2000/06/05 21:20:22 mike Exp $".
+// End of "$Id: Fl_FormsBitmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_FormsPixmap.H b/FL/Fl_FormsPixmap.H
index 8974991fd38abf3975d3ae15f825cceff4916c48..d8c0bcc6bb92f2f4d55598e1a282c89b2c6c9e7e 100644
--- a/FL/Fl_FormsPixmap.H
+++ b/FL/Fl_FormsPixmap.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $"
+// "$Id: Fl_FormsPixmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Forms pixmap header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -42,5 +42,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_FormsPixmap.H,v 1.5.2.2 2000/06/05 21:20:23 mike Exp $".
+// End of "$Id: Fl_FormsPixmap.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Free.H b/FL/Fl_Free.H
index c357a737386c52e94c53cc3ee315e53be8590d38..6061fb55646d0d5632a66b975ebdc7e1d9f44a9f 100644
--- a/FL/Fl_Free.H
+++ b/FL/Fl_Free.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Free.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $"
+// "$Id: Fl_Free.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Forms free header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -60,5 +60,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Free.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $".
+// End of "$Id: Fl_Free.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Gl_Window.H b/FL/Fl_Gl_Window.H
index c547fc69df8d39415d882e39c1e6ec525845f2a8..0951f3a107dc174c0d6e53802db66e74dbfcabae 100644
--- a/FL/Fl_Gl_Window.H
+++ b/FL/Fl_Gl_Window.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $"
+// "$Id: Fl_Gl_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // OpenGL header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -84,5 +84,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Gl_Window.H,v 1.7.2.2 2000/06/05 21:20:23 mike Exp $".
+// End of "$Id: Fl_Gl_Window.H,v 1.7.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Group.H b/FL/Fl_Group.H
index 803dd89feb5db5784d16758f1c6cfad489dfc4ce..10e0dd167f48f1961d0277f30b9ed745dbc12720 100644
--- a/FL/Fl_Group.H
+++ b/FL/Fl_Group.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Group.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $"
+// "$Id: Fl_Group.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Group header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -96,5 +96,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Group.H,v 1.6.2.3 2000/06/10 19:29:59 carl Exp $".
+// End of "$Id: Fl_Group.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Hold_Browser.H b/FL/Fl_Hold_Browser.H
index 4ce89716691ba1c7afbfc82772ea064069628f35..0e70c9f6a7f485439339c5ed39a0db1ef1bbd497 100644
--- a/FL/Fl_Hold_Browser.H
+++ b/FL/Fl_Hold_Browser.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $"
+// "$Id: Fl_Hold_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Hold browser header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Hold_Browser.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $".
+// End of "$Id: Fl_Hold_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Hor_Fill_Slider.H b/FL/Fl_Hor_Fill_Slider.H
index 22ed881591836a644815aeb0e12b267e26206452..5493dd4ddf3ad03224c5d9a4d52f7e728915e696 100644
--- a/FL/Fl_Hor_Fill_Slider.H
+++ b/FL/Fl_Hor_Fill_Slider.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $"
+// "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Horizontal fill slider header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -36,5 +36,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.2 2000/06/05 21:20:23 mike Exp $".
+// End of "$Id: Fl_Hor_Fill_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Hor_Nice_Slider.H b/FL/Fl_Hor_Nice_Slider.H
index 5f6934e487181f1371238a328ceb1dcb2a8300a1..5e1d6629cf70f0168947af3e77402afd79acee0c 100644
--- a/FL/Fl_Hor_Nice_Slider.H
+++ b/FL/Fl_Hor_Nice_Slider.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
+// "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Horizontal "nice" slider header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
+// End of "$Id: Fl_Hor_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Hor_Slider.H b/FL/Fl_Hor_Slider.H
index 4b5c1b644b9eb8fb93411b6d845295aeef3c3ff4..cd47e021d400b79212b2b2b2ec6298c2773cad96 100644
--- a/FL/Fl_Hor_Slider.H
+++ b/FL/Fl_Hor_Slider.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
+// "$Id: Fl_Hor_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Horizontal slider header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Hor_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
+// End of "$Id: Fl_Hor_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Hor_Value_Slider.H b/FL/Fl_Hor_Value_Slider.H
index 85afbeebd4dfcde50d962a1bfa717e929fb39dd7..30df70b6ce7898a0948d1fcfe2bf39c37d089d23 100644
--- a/FL/Fl_Hor_Value_Slider.H
+++ b/FL/Fl_Hor_Value_Slider.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
+// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Horizontal value slider header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
+// End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Image.H b/FL/Fl_Image.H
index b23bc50cb3da93865a0966ffa5764a2ba6fa1f27..8e7bb219c63f1f47afd9099881f356c2bfbf2b26 100644
--- a/FL/Fl_Image.H
+++ b/FL/Fl_Image.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $"
+// "$Id: Fl_Image.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Image header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -45,5 +45,5 @@ struct Fl_Image {
 #endif
 
 //
-// End of "$Id: Fl_Image.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $".
+// End of "$Id: Fl_Image.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Input.H b/FL/Fl_Input.H
index 25a8ca52f2796459f6541e491979997ebb7dca9b..3cada2892fdf807a22fcb49c3dcfb26dc0cffae4 100644
--- a/FL/Fl_Input.H
+++ b/FL/Fl_Input.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $"
+// "$Id: Fl_Input.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Input header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -42,5 +42,5 @@ public:
 #endif 
 
 //
-// End of "$Id: Fl_Input.H,v 1.5.2.2 2000/06/05 21:20:24 mike Exp $".
+// End of "$Id: Fl_Input.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Input_.H b/FL/Fl_Input_.H
index 5151e8207a5bfc9fe4f388babfd7b490a0c88883..d44a3f8e3f8ecf3441b690a7c079a294fb1b38d8 100644
--- a/FL/Fl_Input_.H
+++ b/FL/Fl_Input_.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Input_.H,v 1.6.2.3 2000/06/20 07:56:06 bill Exp $"
+// "$Id: Fl_Input_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Input base class header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -122,5 +122,5 @@ public:
 #endif 
 
 //
-// End of "$Id: Fl_Input_.H,v 1.6.2.3 2000/06/20 07:56:06 bill Exp $".
+// End of "$Id: Fl_Input_.H,v 1.6.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Int_Input.H b/FL/Fl_Int_Input.H
index 442d21a0ecbbccafa3f1ce205f906dd37d670ec5..f0892cb300395f5d8c7715f669565c997432f11d 100644
--- a/FL/Fl_Int_Input.H
+++ b/FL/Fl_Int_Input.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $"
+// "$Id: Fl_Int_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Integer input header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Int_Input.H,v 1.4.2.2 2000/06/05 21:20:24 mike Exp $".
+// End of "$Id: Fl_Int_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Light_Button.H b/FL/Fl_Light_Button.H
index 63da57c3f5a3945f5a5118c5a6f0fedb39c6122a..0f6a15c87789e15ff779997d969d8c1980199e10 100644
--- a/FL/Fl_Light_Button.H
+++ b/FL/Fl_Light_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $"
+// "$Id: Fl_Light_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Lighted button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -39,5 +39,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Light_Button.H,v 1.5.2.2 2000/06/05 21:20:25 mike Exp $".
+// End of "$Id: Fl_Light_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Line_Dial.H b/FL/Fl_Line_Dial.H
index c1257295fe1246864ce59ffc9eb9538ea2724f41..d822c30d8d85b797872c7e95d9896c876d45cea5 100644
--- a/FL/Fl_Line_Dial.H
+++ b/FL/Fl_Line_Dial.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $"
+// "$Id: Fl_Line_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Line dial header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Line_Dial.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $".
+// End of "$Id: Fl_Line_Dial.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Menu.H b/FL/Fl_Menu.H
index bd7d7e689401e3b8e42c409de7923b87d92ea376..a66c5822e602f53e1d0175d8f4444200ccd5a6e4 100644
--- a/FL/Fl_Menu.H
+++ b/FL/Fl_Menu.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $"
+// "$Id: Fl_Menu.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Old menu header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -27,5 +27,5 @@
 #include "Fl_Menu_Item.H"
 
 //
-// End of "$Id: Fl_Menu.H,v 1.4.2.2 2000/06/05 21:20:25 mike Exp $".
+// End of "$Id: Fl_Menu.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Menu_.H b/FL/Fl_Menu_.H
index 242cc3068268209989892cf9e685e34093e51508..5850e94218d2c09a2610d2136df65087a2fcc606 100644
--- a/FL/Fl_Menu_.H
+++ b/FL/Fl_Menu_.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $"
+// "$Id: Fl_Menu_.H,v 1.7.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Menu base class header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -93,5 +93,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Menu_.H,v 1.7.2.3 2000/06/05 21:20:25 mike Exp $".
+// End of "$Id: Fl_Menu_.H,v 1.7.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Menu_Bar.H b/FL/Fl_Menu_Bar.H
index 4ff4904a64665895ade5aca0274a7c3ef7d6c63f..7a5fe136f75e9cfe318142c2ac3f223c939fcd9a 100644
--- a/FL/Fl_Menu_Bar.H
+++ b/FL/Fl_Menu_Bar.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_Bar.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $"
+// "$Id: Fl_Menu_Bar.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Menu bar header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -40,5 +40,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Menu_Bar.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $".
+// End of "$Id: Fl_Menu_Bar.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Menu_Button.H b/FL/Fl_Menu_Button.H
index a1fd0f64ce1231e7aa00ece1d5a92137cc2c9270..29fee8321efdaac73201dd68485549ed68158891 100644
--- a/FL/Fl_Menu_Button.H
+++ b/FL/Fl_Menu_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
+// "$Id: Fl_Menu_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Menu button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -42,5 +42,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Menu_Button.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
+// End of "$Id: Fl_Menu_Button.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Menu_Item.H b/FL/Fl_Menu_Item.H
index cd0b63b962807b201463b2e3bbc1c52ef65050f3..2f4e2cb8d01e4590e1301559757cac053306ef58 100644
--- a/FL/Fl_Menu_Item.H
+++ b/FL/Fl_Menu_Item.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $"
+// "$Id: Fl_Menu_Item.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $"
 //
 // Menu item header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -153,5 +153,5 @@ enum {	// back-compatability enum:
 #endif
 
 //
-// End of "$Id: Fl_Menu_Item.H,v 1.5.2.3 2000/06/05 21:20:26 mike Exp $".
+// End of "$Id: Fl_Menu_Item.H,v 1.5.2.4 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Menu_Window.H b/FL/Fl_Menu_Window.H
index ba4f058094e2bcbebad99e8c81f9fd2d59b59c10..a5173792a6a2b855c938b1cf67aa6b85f949edf1 100644
--- a/FL/Fl_Menu_Window.H
+++ b/FL/Fl_Menu_Window.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
+// "$Id: Fl_Menu_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Menu window header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -48,5 +48,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Menu_Window.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
+// End of "$Id: Fl_Menu_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Multi_Browser.H b/FL/Fl_Multi_Browser.H
index 0f537b84159bb500656aac63f0cb4f4cb657d996..0fb54e04ba0fa200bb51d0fd8808c714e409f148 100644
--- a/FL/Fl_Multi_Browser.H
+++ b/FL/Fl_Multi_Browser.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $"
+// "$Id: Fl_Multi_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Multi browser header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Multi_Browser.H,v 1.4.2.2 2000/06/05 21:20:26 mike Exp $".
+// End of "$Id: Fl_Multi_Browser.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Multi_Label.H b/FL/Fl_Multi_Label.H
index 759d759ebe68091c9644595be4fb8aa97a89ceb6..57659e5591a3d317af653e7689a167d0a44040cd 100644
--- a/FL/Fl_Multi_Label.H
+++ b/FL/Fl_Multi_Label.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $"
+// "$Id: Fl_Multi_Label.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Multi-label header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -41,5 +41,5 @@ struct Fl_Multi_Label {
 #endif
 
 //
-// End of "$Id: Fl_Multi_Label.H,v 1.5.2.2 2000/06/05 21:20:26 mike Exp $".
+// End of "$Id: Fl_Multi_Label.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Multiline_Input.H b/FL/Fl_Multiline_Input.H
index 0a5ab4f8edc22620750d5cf6feec789ef04edc61..f55cb2c1fe410afc30f546d733d889d769ad38d5 100644
--- a/FL/Fl_Multiline_Input.H
+++ b/FL/Fl_Multiline_Input.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
+// "$Id: Fl_Multiline_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Multiline input header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Multiline_Input.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
+// End of "$Id: Fl_Multiline_Input.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Multiline_Output.H b/FL/Fl_Multiline_Output.H
index d912acebf3687a1896bda0ad523738e8fc161a27..56ab27316b788ceb78ff5fbeab2ce5264d2fde27 100644
--- a/FL/Fl_Multiline_Output.H
+++ b/FL/Fl_Multiline_Output.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
+// "$Id: Fl_Multiline_Output.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Multi line output header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Multiline_Output.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
+// End of "$Id: Fl_Multiline_Output.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Nice_Slider.H b/FL/Fl_Nice_Slider.H
index ea412573cd76087d03462bd76266c5a4a03da3f7..3cf996e4fc0ab444dcc0830c4e78e5e6e2571fc5 100644
--- a/FL/Fl_Nice_Slider.H
+++ b/FL/Fl_Nice_Slider.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
+// "$Id: Fl_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // "Nice" slider header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -36,5 +36,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Nice_Slider.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
+// End of "$Id: Fl_Nice_Slider.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Object.H b/FL/Fl_Object.H
index 89ee58379ff57095f0470b8e193bf99eaba38aff..3e061c37e9d6ea4ff57905d4898be52f6aff7d5b 100644
--- a/FL/Fl_Object.H
+++ b/FL/Fl_Object.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $"
+// "$Id: Fl_Object.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Old Fl_Object header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -30,5 +30,5 @@
 #include "Fl_Widget.H"
 
 //
-// End of "$Id: Fl_Object.H,v 1.4.2.2 2000/06/05 21:20:27 mike Exp $".
+// End of "$Id: Fl_Object.H,v 1.4.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Output.H b/FL/Fl_Output.H
index a9c1acf50ebf3ddb789caae0ba5d5ef8c67fbcf2..0ef155247d3e7bbc2d2a57a05c33da8fe55ab195 100644
--- a/FL/Fl_Output.H
+++ b/FL/Fl_Output.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
+// "$Id: Fl_Output.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Output header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -40,5 +40,5 @@ public:
 #endif 
 
 //
-// End of "$Id: Fl_Output.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $".
+// End of "$Id: Fl_Output.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Overlay_Window.H b/FL/Fl_Overlay_Window.H
index a01b679aa64c90f5d587a573c0f07f16524ba2f6..48e90562361a67f00e7750a716bc36b16f1b2902 100644
--- a/FL/Fl_Overlay_Window.H
+++ b/FL/Fl_Overlay_Window.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
+// "$Id: Fl_Overlay_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Overlay window header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -50,5 +50,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Overlay_Window.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $".
+// End of "$Id: Fl_Overlay_Window.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Pack.H b/FL/Fl_Pack.H
index ba6d1f5d4821187ba3aa5358819f4439349b3ab5..89ec4886d93cd31bafc363ea3329009932d1d5b7 100644
--- a/FL/Fl_Pack.H
+++ b/FL/Fl_Pack.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Pack.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $"
+// "$Id: Fl_Pack.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Pack header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -45,5 +45,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Pack.H,v 1.5.2.2 2000/06/05 21:20:27 mike Exp $".
+// End of "$Id: Fl_Pack.H,v 1.5.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Pixmap.H b/FL/Fl_Pixmap.H
index e80a2e7b787eff6f91ae1e91ff2e5a6a6906fab3..82eb406a44936a5a38523a7e05c2067661824520 100644
--- a/FL/Fl_Pixmap.H
+++ b/FL/Fl_Pixmap.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Pixmap.H,v 1.6.2.2 2000/06/05 21:20:28 mike Exp $"
+// "$Id: Fl_Pixmap.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $"
 //
 // Pixmap header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -46,5 +46,5 @@ struct Fl_Pixmap {
 #endif
 
 //
-// End of "$Id: Fl_Pixmap.H,v 1.6.2.2 2000/06/05 21:20:28 mike Exp $".
+// End of "$Id: Fl_Pixmap.H,v 1.6.2.3 2001/01/22 15:13:37 easysw Exp $".
 //
diff --git a/FL/Fl_Positioner.H b/FL/Fl_Positioner.H
index 911023112b05f336afc22fcdd0f1aba47aa8b7cd..a11e9c147e9aaf89ed72be35826e6c6d9f6c240d 100644
--- a/FL/Fl_Positioner.H
+++ b/FL/Fl_Positioner.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Positioner.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $"
+// "$Id: Fl_Positioner.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Positioner header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -71,5 +71,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Positioner.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $".
+// End of "$Id: Fl_Positioner.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Radio_Button.H b/FL/Fl_Radio_Button.H
index 75d5d409cc615646e2ecf95b21c1d25a7a37c969..40d513ba7a277a9f6710a782941486a00c4057c3 100644
--- a/FL/Fl_Radio_Button.H
+++ b/FL/Fl_Radio_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Radio_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $"
+// "$Id: Fl_Radio_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Radio button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Radio_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $".
+// End of "$Id: Fl_Radio_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Radio_Light_Button.H b/FL/Fl_Radio_Light_Button.H
index 9feb396024ccd955c87d097a5778aeb7173b109f..6b0795bdb1c708491150c7d96695a92c2a50e0ae 100644
--- a/FL/Fl_Radio_Light_Button.H
+++ b/FL/Fl_Radio_Light_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Radio_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $"
+// "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Radio light button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -36,5 +36,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Radio_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $".
+// End of "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Radio_Round_Button.H b/FL/Fl_Radio_Round_Button.H
index 08cef141455f8e469ace0c9fde640d995392c50f..b6331df0502009e4d94115ff2d940b163a58e9b9 100644
--- a/FL/Fl_Radio_Round_Button.H
+++ b/FL/Fl_Radio_Round_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Radio_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $"
+// "$Id: Fl_Radio_Round_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Radio round button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Radio_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:28 mike Exp $".
+// End of "$Id: Fl_Radio_Round_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Repeat_Button.H b/FL/Fl_Repeat_Button.H
index b8566bebf42e64ab1a8f04a33563d535064a05e4..1249b6f1576b1f1e42051acbfe6f636319038834 100644
--- a/FL/Fl_Repeat_Button.H
+++ b/FL/Fl_Repeat_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Repeat_Button.H,v 1.5.2.4 2000/06/05 21:20:28 mike Exp $"
+// "$Id: Fl_Repeat_Button.H,v 1.5.2.5 2001/01/22 15:13:38 easysw Exp $"
 //
 // Repeat button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -43,5 +43,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Repeat_Button.H,v 1.5.2.4 2000/06/05 21:20:28 mike Exp $".
+// End of "$Id: Fl_Repeat_Button.H,v 1.5.2.5 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Return_Button.H b/FL/Fl_Return_Button.H
index dbaf4533dfcaf8630c24f79945cac134317201e3..92d63da7e92fdfe8fba1b9a70f14f3b39402ae8d 100644
--- a/FL/Fl_Return_Button.H
+++ b/FL/Fl_Return_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Return_Button.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $"
+// "$Id: Fl_Return_Button.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Return button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -39,5 +39,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Return_Button.H,v 1.5.2.2 2000/06/05 21:20:28 mike Exp $".
+// End of "$Id: Fl_Return_Button.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Roller.H b/FL/Fl_Roller.H
index ed8eed2397488c9afba3f690f8b01e1deb38005b..71517af404f6be65f579d9d7625e3f7c7233a3ac 100644
--- a/FL/Fl_Roller.H
+++ b/FL/Fl_Roller.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Roller.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $"
+// "$Id: Fl_Roller.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // Roller header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -41,5 +41,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Roller.H,v 1.5.2.3 2000/06/10 19:29:59 carl Exp $".
+// End of "$Id: Fl_Roller.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Round_Button.H b/FL/Fl_Round_Button.H
index a75c1f1fe2f536f8ab61691f505453e90de39496..978d7ba46df12c926b0ee567cd9e452a053c575a 100644
--- a/FL/Fl_Round_Button.H
+++ b/FL/Fl_Round_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Round_Button.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $"
+// "$Id: Fl_Round_Button.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Round button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -36,5 +36,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Round_Button.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $".
+// End of "$Id: Fl_Round_Button.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Round_Clock.H b/FL/Fl_Round_Clock.H
index 3fca112fa5cf1c57d315f77398de06163689c451..8e7078be86b6b63715bfdd27a788f6517e2fc07d 100644
--- a/FL/Fl_Round_Clock.H
+++ b/FL/Fl_Round_Clock.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Round_Clock.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $"
+// "$Id: Fl_Round_Clock.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Round clock header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Round_Clock.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $".
+// End of "$Id: Fl_Round_Clock.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Scroll.H b/FL/Fl_Scroll.H
index 8bbc4d6aab66dc309a8b78eca4c3ee661d63e8c0..55360454d6d832a4e846d28d95b36fcee3f5a39d 100644
--- a/FL/Fl_Scroll.H
+++ b/FL/Fl_Scroll.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Scroll.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $"
+// "$Id: Fl_Scroll.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Scroll header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -72,5 +72,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Scroll.H,v 1.5.2.2 2000/06/05 21:20:29 mike Exp $".
+// End of "$Id: Fl_Scroll.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Scrollbar.H b/FL/Fl_Scrollbar.H
index 564385acdbb1062e448799d51fd92d6f816039f1..8de193f4918cc0002be0e65b53160adaa5f01a0d 100644
--- a/FL/Fl_Scrollbar.H
+++ b/FL/Fl_Scrollbar.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Scrollbar.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $"
+// "$Id: Fl_Scrollbar.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // Scroll bar header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -54,5 +54,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Scrollbar.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $".
+// End of "$Id: Fl_Scrollbar.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Secret_Input.H b/FL/Fl_Secret_Input.H
index c8d9b9496ee7fe2a670b93b43800af4b12317a28..9227a7b9b420fd83e7628be4ae1ed31688fee01f 100644
--- a/FL/Fl_Secret_Input.H
+++ b/FL/Fl_Secret_Input.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Secret_Input.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $"
+// "$Id: Fl_Secret_Input.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Secret input header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Secret_Input.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $".
+// End of "$Id: Fl_Secret_Input.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Select_Browser.H b/FL/Fl_Select_Browser.H
index 24d8a7734bc978d7fda9ac34b80e8258e12320a3..84c383620f07004e01ffa5caf9d2c0510943f579 100644
--- a/FL/Fl_Select_Browser.H
+++ b/FL/Fl_Select_Browser.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Select_Browser.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $"
+// "$Id: Fl_Select_Browser.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Select browser header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Select_Browser.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $".
+// End of "$Id: Fl_Select_Browser.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Simple_Counter.H b/FL/Fl_Simple_Counter.H
index d3e3ad723dc01c250dd734fe4aaa30f35fa8bf4f..d995c7a93b6f79af511d295ed34b8fe8735b9931 100644
--- a/FL/Fl_Simple_Counter.H
+++ b/FL/Fl_Simple_Counter.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Simple_Counter.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $"
+// "$Id: Fl_Simple_Counter.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Simple counter header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Simple_Counter.H,v 1.4.2.2 2000/06/05 21:20:29 mike Exp $".
+// End of "$Id: Fl_Simple_Counter.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Single_Window.H b/FL/Fl_Single_Window.H
index f2545ccb8a19e37396414daf138f48623c08efed..126c6b111b910dab62d8e112ebc7810c3263c2a0 100644
--- a/FL/Fl_Single_Window.H
+++ b/FL/Fl_Single_Window.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Single_Window.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $"
+// "$Id: Fl_Single_Window.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Single-buffered window header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -43,5 +43,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Single_Window.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $".
+// End of "$Id: Fl_Single_Window.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Slider.H b/FL/Fl_Slider.H
index 9807d69026af9898fa6f169e01bd94410210fa80..d789d69364338c188ad2a7307d0384e1540abb8b 100644
--- a/FL/Fl_Slider.H
+++ b/FL/Fl_Slider.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Slider.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $"
+// "$Id: Fl_Slider.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Slider header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -69,5 +69,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Slider.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $".
+// End of "$Id: Fl_Slider.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Tabs.H b/FL/Fl_Tabs.H
index e2dfcf070d52ed798e41ff12aad6f978f45b498b..f05eb79cb26feaead1f85be5730dc451b7efbbbc 100644
--- a/FL/Fl_Tabs.H
+++ b/FL/Fl_Tabs.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Tabs.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $"
+// "$Id: Fl_Tabs.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // Tab header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -50,5 +50,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Tabs.H,v 1.5.2.3 2000/06/10 19:30:00 carl Exp $".
+// End of "$Id: Fl_Tabs.H,v 1.5.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Tile.H b/FL/Fl_Tile.H
index 5d8d4e13ccd6d66f92ca1471c02af50ff1d0228b..ad6b5485100cb8ccf883e59a3fcf10e0f657cf46 100644
--- a/FL/Fl_Tile.H
+++ b/FL/Fl_Tile.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Tile.H,v 1.6.2.2 2000/06/05 21:20:30 mike Exp $"
+// "$Id: Fl_Tile.H,v 1.6.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Tile header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -39,5 +39,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Tile.H,v 1.6.2.2 2000/06/05 21:20:30 mike Exp $".
+// End of "$Id: Fl_Tile.H,v 1.6.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Timer.H b/FL/Fl_Timer.H
index 8a0b5cc23d5cef8f430570bc951f3a4935862050..3504cf48487b71411ebc05d7a0f6858ef27fb60a 100644
--- a/FL/Fl_Timer.H
+++ b/FL/Fl_Timer.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Timer.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $"
+// "$Id: Fl_Timer.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Timer header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -58,6 +58,6 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Timer.H,v 1.5.2.2 2000/06/05 21:20:30 mike Exp $".
+// End of "$Id: Fl_Timer.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
 
diff --git a/FL/Fl_Toggle_Button.H b/FL/Fl_Toggle_Button.H
index 3c6ebbe6ec60c66d830a8a501dba6a9324c0fd53..a910ef49e0398d0c196f88b0b07425be8d975cbb 100644
--- a/FL/Fl_Toggle_Button.H
+++ b/FL/Fl_Toggle_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Toggle_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $"
+// "$Id: Fl_Toggle_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Toggle button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Toggle_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $".
+// End of "$Id: Fl_Toggle_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Toggle_Light_Button.H b/FL/Fl_Toggle_Light_Button.H
index ec79b8d3b6fb19cf9fe53c3d399831ab614743d1..605387caf421729d933132b930d054b8acb920e6 100644
--- a/FL/Fl_Toggle_Light_Button.H
+++ b/FL/Fl_Toggle_Light_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $"
+// "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Toggle light button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -31,5 +31,5 @@
 #endif
 
 //
-// End of "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.2 2000/06/05 21:20:30 mike Exp $".
+// End of "$Id: Fl_Toggle_Light_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Toggle_Round_Button.H b/FL/Fl_Toggle_Round_Button.H
index a1e04d02f0edd8556cc8fed1182581dcdfa27b50..52ae1ad28b11f9668b8e52120b35057cc37b6e93 100644
--- a/FL/Fl_Toggle_Round_Button.H
+++ b/FL/Fl_Toggle_Round_Button.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:31 mike Exp $"
+// "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Toggle round button header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -31,5 +31,5 @@
 #endif
 
 //
-// End of "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.2 2000/06/05 21:20:31 mike Exp $".
+// End of "$Id: Fl_Toggle_Round_Button.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Valuator.H b/FL/Fl_Valuator.H
index 025a13cf54d98c292e2f06ec7eacabd5084cf74e..316fc7ef1b6699baa7346c8d05060985bf4b7aaf 100644
--- a/FL/Fl_Valuator.H
+++ b/FL/Fl_Valuator.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Valuator.H,v 1.5.2.4 2000/07/29 23:52:04 spitzak Exp $"
+// "$Id: Fl_Valuator.H,v 1.5.2.5 2001/01/22 15:13:38 easysw Exp $"
 //
 // Valuator header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -80,5 +80,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Valuator.H,v 1.5.2.4 2000/07/29 23:52:04 spitzak Exp $".
+// End of "$Id: Fl_Valuator.H,v 1.5.2.5 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Value_Input.H b/FL/Fl_Value_Input.H
index 1833faff016218988a91865d09c6408cdb90f9dd..7a079bb8553324f0cfaec934b06993084ef2df88 100644
--- a/FL/Fl_Value_Input.H
+++ b/FL/Fl_Value_Input.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Value_Input.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $"
+// "$Id: Fl_Value_Input.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Value input header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -59,5 +59,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Value_Input.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $".
+// End of "$Id: Fl_Value_Input.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Value_Output.H b/FL/Fl_Value_Output.H
index e1f05589662471c60139b37e565f8c91c3d22b7b..29dc108b09fb4e87e355b8673ef9b7e9a4290020 100644
--- a/FL/Fl_Value_Output.H
+++ b/FL/Fl_Value_Output.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Value_Output.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $"
+// "$Id: Fl_Value_Output.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Value output header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -51,5 +51,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Value_Output.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $".
+// End of "$Id: Fl_Value_Output.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Value_Slider.H b/FL/Fl_Value_Slider.H
index 37c3d97b82b10304f22ee1c156b4d870e92e1b7c..49a38ddbf66e5c4233e4a42564a9571de1caa9cd 100644
--- a/FL/Fl_Value_Slider.H
+++ b/FL/Fl_Value_Slider.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Value_Slider.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $"
+// "$Id: Fl_Value_Slider.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Value slider header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -45,5 +45,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Value_Slider.H,v 1.5.2.2 2000/06/05 21:20:31 mike Exp $".
+// End of "$Id: Fl_Value_Slider.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Widget.H b/FL/Fl_Widget.H
index ea12ecaee009a73318f4213f6a96474955f02a03..09bace607930f2340bafbc0595b653a3f6b338d7 100644
--- a/FL/Fl_Widget.H
+++ b/FL/Fl_Widget.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Widget.H,v 1.6.2.3 2000/06/05 21:20:32 mike Exp $"
+// "$Id: Fl_Widget.H,v 1.6.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // Widget header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -191,5 +191,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Widget.H,v 1.6.2.3 2000/06/05 21:20:32 mike Exp $".
+// End of "$Id: Fl_Widget.H,v 1.6.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H
index 5c70751822224bd4f208da1c7522c975e3a21718..05ebb9508266989a2ce6b6f71d1016d4f2526bd5 100644
--- a/FL/Fl_Window.H
+++ b/FL/Fl_Window.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Window.H,v 1.12.2.4 2000/06/05 21:20:32 mike Exp $"
+// "$Id: Fl_Window.H,v 1.12.2.5 2001/01/22 15:13:38 easysw Exp $"
 //
 // Window header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -113,5 +113,5 @@ public:
 #endif
 
 //
-// End of "$Id: Fl_Window.H,v 1.12.2.4 2000/06/05 21:20:32 mike Exp $".
+// End of "$Id: Fl_Window.H,v 1.12.2.5 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/dirent.h b/FL/dirent.h
index 2e774c1fa5088ae9104d3af89f7ba402cace088a..9951f0298eacc733e4f8b630839db9aa3428b1ec 100644
--- a/FL/dirent.h
+++ b/FL/dirent.h
@@ -1,9 +1,9 @@
 //
-// "$Id: dirent.h,v 1.5.2.2 2000/06/05 21:20:32 mike Exp $"
+// "$Id: dirent.h,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Directory header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -27,5 +27,5 @@
 #include "filename.H"
 
 //
-// End of "$Id: dirent.h,v 1.5.2.2 2000/06/05 21:20:32 mike Exp $".
+// End of "$Id: dirent.h,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/filename.H b/FL/filename.H
index 375f0edf69ab344c8d914430cafe54bae6f6c06f..cad5b75d9556ec4ea9812903a8a0c7b5185adbe0 100644
--- a/FL/filename.H
+++ b/FL/filename.H
@@ -1,9 +1,9 @@
 //
-// "$Id: filename.H,v 1.11.2.3 2000/06/05 21:20:32 mike Exp $"
+// "$Id: filename.H,v 1.11.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // Filename header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -76,5 +76,5 @@ FL_EXPORT int filename_list(const char *d, struct dirent ***list);
 #endif
 
 //
-// End of "$Id: filename.H,v 1.11.2.3 2000/06/05 21:20:32 mike Exp $".
+// End of "$Id: filename.H,v 1.11.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/fl_ask.H b/FL/fl_ask.H
index 170318e2a0914508b0d1d8f9fda7bdac7bf809a3..59067375d8787da26f1f7189a25d7bec169eb251 100644
--- a/FL/fl_ask.H
+++ b/FL/fl_ask.H
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_ask.H,v 1.7.2.2 2000/06/05 21:20:32 mike Exp $"
+// "$Id: fl_ask.H,v 1.7.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Standard dialog header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -52,5 +52,5 @@ extern FL_EXPORT const char* fl_cancel;
 #endif
 
 //
-// End of "$Id: fl_ask.H,v 1.7.2.2 2000/06/05 21:20:32 mike Exp $".
+// End of "$Id: fl_ask.H,v 1.7.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/fl_draw.H b/FL/fl_draw.H
index 348e4b07a82631d9b90c27ad54f5464cb61aea0c..6f6edfd9507c984819d519846bad53c9592ca3f4 100644
--- a/FL/fl_draw.H
+++ b/FL/fl_draw.H
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_draw.H,v 1.9.2.4 2000/06/05 21:20:33 mike Exp $"
+// "$Id: fl_draw.H,v 1.9.2.5 2001/01/22 15:13:38 easysw Exp $"
 //
 // Portable drawing function header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -179,5 +179,5 @@ FL_EXPORT int fl_add_symbol(const char* name, void (*drawit)(Fl_Color), int scal
 #endif
 
 //
-// End of "$Id: fl_draw.H,v 1.9.2.4 2000/06/05 21:20:33 mike Exp $".
+// End of "$Id: fl_draw.H,v 1.9.2.5 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/fl_file_chooser.H b/FL/fl_file_chooser.H
index f3f5f015956183675e66a432e1daa7c0520ed256..aa079975f3742fe45cf48ec5d3ac54df48f0f050 100644
--- a/FL/fl_file_chooser.H
+++ b/FL/fl_file_chooser.H
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_file_chooser.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $"
+// "$Id: fl_file_chooser.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // File chooser header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -34,5 +34,5 @@ FL_EXPORT void fl_file_chooser_callback(void (*cb)(const char *));
 #endif
 
 //
-// End of "$Id: fl_file_chooser.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $".
+// End of "$Id: fl_file_chooser.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/fl_message.H b/FL/fl_message.H
index a152e288d8bb306e9202276fc41b27dace32befb..11717fb7bd368ddb0e33d5d92b4bd359e7f980d5 100644
--- a/FL/fl_message.H
+++ b/FL/fl_message.H
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_message.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $"
+// "$Id: fl_message.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Standard message header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -26,5 +26,5 @@
 #include "fl_ask.H"
 
 //
-// End of "$Id: fl_message.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $".
+// End of "$Id: fl_message.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/fl_show_colormap.H b/FL/fl_show_colormap.H
index 4d802b4bdb37c8954073027e6a86a2e7ef23f18c..fca1a4d04813d2eee2e4c51c6a1045d524d7895d 100644
--- a/FL/fl_show_colormap.H
+++ b/FL/fl_show_colormap.H
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_show_colormap.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $"
+// "$Id: fl_show_colormap.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Colormap picker header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -31,5 +31,5 @@ FL_EXPORT Fl_Color fl_show_colormap(Fl_Color oldcol);
 #endif
 
 //
-// End of "$Id: fl_show_colormap.H,v 1.5.2.2 2000/06/05 21:20:33 mike Exp $".
+// End of "$Id: fl_show_colormap.H,v 1.5.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/fl_show_input.H b/FL/fl_show_input.H
index 98ae82cc475c76d428c9b5aaddf113855c5a8db1..5b8066eae3eb7e7650d76ca828c6f64ce3b8000c 100644
--- a/FL/fl_show_input.H
+++ b/FL/fl_show_input.H
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_show_input.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $"
+// "$Id: fl_show_input.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Standard input dialog header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -26,5 +26,5 @@
 #include "fl_ask.H"
 
 //
-// End of "$Id: fl_show_input.H,v 1.4.2.2 2000/06/05 21:20:33 mike Exp $".
+// End of "$Id: fl_show_input.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/forms.H b/FL/forms.H
index f7fa92f1e20254a62c0205df1017516a448ec386..cf7d003d30b1af554978ac47b75bb3266b11232e 100644
--- a/FL/forms.H
+++ b/FL/forms.H
@@ -1,9 +1,9 @@
 //
-// "$Id: forms.H,v 1.7.2.5 2000/06/05 21:20:33 mike Exp $"
+// "$Id: forms.H,v 1.7.2.6 2001/01/22 15:13:38 easysw Exp $"
 //
 // Forms emulation header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -838,5 +838,5 @@ inline void fl_draw() {Fl::flush();}
 #endif	/* define __FORMS_H__ */
 
 //
-// End of "$Id: forms.H,v 1.7.2.5 2000/06/05 21:20:33 mike Exp $".
+// End of "$Id: forms.H,v 1.7.2.6 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/gl.h b/FL/gl.h
index 53541edc001949657f90a0974b50529cc8042e2d..d4102a259c421d06ce178788bba9c2f37ab30b08 100644
--- a/FL/gl.h
+++ b/FL/gl.h
@@ -1,9 +1,9 @@
 //
-// "$Id: gl.h,v 1.6.2.3 2000/11/28 15:32:07 spitzak Exp $"
+// "$Id: gl.h,v 1.6.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // OpenGL header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // You must include this instead of GL/gl.h to get the Microsoft
 // APIENTRY stuff included (from <windows.h>) prior to the OpenGL
@@ -76,5 +76,5 @@ FL_EXPORT void gl_draw_image(const uchar *, int x,int y,int w,int h, int d=3, in
 #endif
 
 //
-// End of "$Id: gl.h,v 1.6.2.3 2000/11/28 15:32:07 spitzak Exp $".
+// End of "$Id: gl.h,v 1.6.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/gl_draw.H b/FL/gl_draw.H
index 82b642dc42fe1e6c2980c3a3f5c87e77526591e9..1407228cb09954d801c31c43c21ede90a16e27a3 100644
--- a/FL/gl_draw.H
+++ b/FL/gl_draw.H
@@ -1,9 +1,9 @@
 //
-// "$Id: gl_draw.H,v 1.4.2.2 2000/06/05 21:20:34 mike Exp $"
+// "$Id: gl_draw.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // OpenGL header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -26,5 +26,5 @@
 #include "gl.h"
 
 //
-// End of "$Id: gl_draw.H,v 1.4.2.2 2000/06/05 21:20:34 mike Exp $".
+// End of "$Id: gl_draw.H,v 1.4.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/glut.H b/FL/glut.H
index d719937dc57dd34bfb7839f606f780f31a22fad8..8f8b2b446e3155b432b488c4f4e6e49d6ff55bc7 100644
--- a/FL/glut.H
+++ b/FL/glut.H
@@ -1,9 +1,9 @@
 //
-// "$Id: glut.H,v 1.6.2.8 2000/12/12 08:57:30 spitzak Exp $"
+// "$Id: glut.H,v 1.6.2.9 2001/01/22 15:13:38 easysw Exp $"
 //
 // GLUT emulation header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -470,5 +470,5 @@ extern void APIENTRY glutSolidIcosahedron();
 #endif                  /* __glut_h__ */
 
 //
-// End of "$Id: glut.H,v 1.6.2.8 2000/12/12 08:57:30 spitzak Exp $".
+// End of "$Id: glut.H,v 1.6.2.9 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/math.h b/FL/math.h
index 0e7796b940cb296b86eba614cbc47ec71f9f0c31..9167bd380eeae604b740446758e9d174bb30f12a 100644
--- a/FL/math.h
+++ b/FL/math.h
@@ -1,9 +1,9 @@
 //
-// "$Id: math.h,v 1.4.2.3 2000/06/05 21:20:34 mike Exp $"
+// "$Id: math.h,v 1.4.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // Math header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -57,5 +57,5 @@ inline double copysign(double a, double b) {return b<0 ? -a : a;}
 #endif
 
 //
-// End of "$Id: math.h,v 1.4.2.3 2000/06/05 21:20:34 mike Exp $".
+// End of "$Id: math.h,v 1.4.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/win32.H b/FL/win32.H
index 4cd75bea3773df6e14967c874d76bde9d9911ffb..b4dfc238d77a85e1d65bf794c66a12212debfba0 100644
--- a/FL/win32.H
+++ b/FL/win32.H
@@ -1,9 +1,9 @@
 //
-// "$Id: win32.H,v 1.15.2.2 2000/06/05 21:20:34 mike Exp $"
+// "$Id: win32.H,v 1.15.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // WIN32 header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -121,5 +121,5 @@ FL_EXPORT void fl_copy_offscreen(int x,int y,int w,int h,HBITMAP pixmap,int srcx
 #define fl_delete_offscreen(bitmap) DeleteObject(bitmap);
 
 //
-// End of "$Id: win32.H,v 1.15.2.2 2000/06/05 21:20:34 mike Exp $".
+// End of "$Id: win32.H,v 1.15.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/FL/x.H b/FL/x.H
index 323309155da1d15e606fceda43d9a055b114e707..1d12da5dacefa3ef7da5fb74c3b07208979b8bac 100644
--- a/FL/x.H
+++ b/FL/x.H
@@ -1,9 +1,9 @@
 //
-// "$Id: x.H,v 1.10.2.7 2000/06/05 21:20:34 mike Exp $"
+// "$Id: x.H,v 1.10.2.8 2001/01/22 15:13:38 easysw Exp $"
 //
 // X11 header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -125,5 +125,5 @@ extern FL_EXPORT int fl_background_pixel;  // hack into Fl_X::make_xid()
 #endif
 
 //
-// End of "$Id: x.H,v 1.10.2.7 2000/06/05 21:20:34 mike Exp $".
+// End of "$Id: x.H,v 1.10.2.8 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/Makefile b/Makefile
index 3e833e77e372e811feaa359b359097144a916f98..27c9491b3e424f2c74a02bf1bd8a357f2f438f2f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile,v 1.12.2.4 2000/06/30 04:23:12 spitzak Exp $"
+# "$Id: Makefile,v 1.12.2.5 2001/01/22 15:13:37 easysw Exp $"
 #
 # Top-level makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -69,5 +69,5 @@ makeinclude: configure configh.in makeinclude.in
 	./configure
 
 #
-# End of "$Id: Makefile,v 1.12.2.4 2000/06/30 04:23:12 spitzak Exp $".
+# End of "$Id: Makefile,v 1.12.2.5 2001/01/22 15:13:37 easysw Exp $".
 #
diff --git a/README b/README
index a554d01ef78131ba637f7531bc9f21eb598a529a..9ddc6e3eb1888c0f3ef936bce30c0bd742e4b5bc 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-README - Fast Light Tool Kit (FLTK) Version 1.0.10
+README - Fast Light Tool Kit (FLTK) Version 1.0.11
 --------------------------------------------------
 
 WHAT IS FLTK?
@@ -134,7 +134,8 @@ REPORTING BUGS
     To report a bug in FLTK, send an email to
     "fltk-bugs@fltk.org". Please include the FLTK version,
     operating system & version, and compiler that you are using
-    when describing the bug or problem.
+    when describing the bug or problem.  You can also submit a
+    bug on the SourceForge pages.
 
     For general support and questions, please use the FLTK
     mailing list at "fltk@fltk.org".
@@ -165,7 +166,7 @@ TRADEMARKS
 
 COPYRIGHT
 
-    FLTK is copyright 1998-2000 by Bill Spitzak (spitzak@d2.com)
+    FLTK is copyright 1998-2001 by Bill Spitzak (spitzak@d2.com)
     and others, including:
 
         Craig P. Earls (cpearls@mit.edu)
diff --git a/bc5/config.h b/bc5/config.h
index 274e2b7b689fa6607827c144ef806a430f5182ab..863581b9389537ae7674383bff262ea6322e222b 100644
--- a/bc5/config.h
+++ b/bc5/config.h
@@ -1,9 +1,9 @@
 /*
- * "$Id: config.h,v 1.1.2.2 2000/04/25 22:16:01 mike Exp $"
+ * "$Id: config.h,v 1.1.2.3 2001/01/22 15:13:38 easysw Exp $"
  *
  * Configuration file for the Fast Light Tool Kit (FLTK).
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -150,5 +150,5 @@
 #define HAVE_POLL 0
 
 /*
- * End of "$Id: config.h,v 1.1.2.2 2000/04/25 22:16:01 mike Exp $".
+ * End of "$Id: config.h,v 1.1.2.3 2001/01/22 15:13:38 easysw Exp $".
  */
diff --git a/configh.in b/configh.in
index 8fb0977a6d5ad776c2ac03771a3881deb8a1bf22..ce8c223d265249a603934171211626641519837c 100644
--- a/configh.in
+++ b/configh.in
@@ -1,10 +1,10 @@
 /*
- * "$Id: configh.in,v 1.11.2.6 2000/11/20 15:44:17 easysw Exp $"
+ * "$Id: configh.in,v 1.11.2.7 2001/01/22 15:13:37 easysw Exp $"
  *
  * Configuration file for the Fast Light Tool Kit (FLTK).
  * @configure_input@
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -159,5 +159,5 @@
 #define USE_POLL 0
 
 /*
- * End of "$Id: configh.in,v 1.11.2.6 2000/11/20 15:44:17 easysw Exp $".
+ * End of "$Id: configh.in,v 1.11.2.7 2001/01/22 15:13:37 easysw Exp $".
  */
diff --git a/configure.in b/configure.in
index 2e0a90e9cacda0daaf94203b788eeda1542fff31..82dff1afa26a18dfff03b7a38cee1134a7ad989f 100644
--- a/configure.in
+++ b/configure.in
@@ -1,11 +1,11 @@
 dnl -*- sh -*-
 dnl the "configure" script is made from this by running GNU "autoconf"
 dnl
-dnl "$Id: configure.in,v 1.33.2.21 2000/12/06 21:09:59 easysw Exp $"
+dnl "$Id: configure.in,v 1.33.2.22 2001/01/22 15:13:37 easysw Exp $"
 dnl
 dnl Configuration script for the Fast Light Tool Kit (FLTK).
 dnl
-dnl Copyright 1998-2000 by Bill Spitzak and others.
+dnl Copyright 1998-2001 by Bill Spitzak and others.
 dnl
 dnl This library is free software; you can redistribute it and/or
 dnl modify it under the terms of the GNU Library General Public
@@ -281,5 +281,5 @@ AC_CONFIG_HEADER(config.h:configh.in)
 AC_OUTPUT(makeinclude)
 
 dnl
-dnl End of "$Id: configure.in,v 1.33.2.21 2000/12/06 21:09:59 easysw Exp $".
+dnl End of "$Id: configure.in,v 1.33.2.22 2001/01/22 15:13:37 easysw Exp $".
 dnl
diff --git a/documentation/Makefile b/documentation/Makefile
index c91c7c64186723581940fb05f475e6081dd6f60a..2317b9f965e2dc050144e5e2a79022c7d4777645 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile,v 1.9.2.7 2000/12/21 18:15:14 easysw Exp $"
+# "$Id: Makefile,v 1.9.2.8 2001/01/22 15:13:38 easysw Exp $"
 #
 # Documentation makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -149,5 +149,5 @@ fltk.pdf: $(HTMLFILES)
 	$(HTMLDOC) -f fltk.pdf --jpeg --compression=9 --duplex --verbose --toclevels 2 --titleimage FL.gif $(HTMLFILES)
 
 #
-# End of "$Id: Makefile,v 1.9.2.7 2000/12/21 18:15:14 easysw Exp $".
+# End of "$Id: Makefile,v 1.9.2.8 2001/01/22 15:13:38 easysw Exp $".
 #
diff --git a/documentation/index.html b/documentation/index.html
index aca623c6cb63201d0a78bf6ae3adec09d2d88d5a..4f2b870ae0f6536db3defd81ac4fc545906bd005 100644
--- a/documentation/index.html
+++ b/documentation/index.html
@@ -1,6 +1,6 @@
 <HTML>
 <HEAD><meta name="robots" content="noindex">
-	<TITLE>FLTK 1.0.10 Programming Manual</TITLE>
+	<TITLE>FLTK 1.0.11 Programming Manual</TITLE>
 </HEAD>
 <BODY>
 
@@ -8,9 +8,9 @@
 <TR>
 <TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC=FL.gif ALIGN=ABSMIDDLE></TD>
 <TD ALIGN=CENTER VALIGN=MIDDLE>
-<H1>FLTK 1.0.10 Programming Manual</H1>
-Revision 16 by Michael Sweet, Craig P. Earls, and Bill Spitzak<BR>
-Copyright 1998-2000 by Bill Spitzak and others.<BR>
+<H1>FLTK 1.0.11 Programming Manual</H1>
+Revision 17 by Michael Sweet, Craig P. Earls, and Bill Spitzak<BR>
+Copyright 1998-2001 by Bill Spitzak and others.<BR>
 </TD>
 </TR>
 <TR>
diff --git a/documentation/preface.html b/documentation/preface.html
index d3304217a3d3c5343a2f87e716f3a41d0ccc2068..4a83822e29066c2a58fad16b3a68285864d9c29c 100644
--- a/documentation/preface.html
+++ b/documentation/preface.html
@@ -1,14 +1,14 @@
 <HTML>
 <HEAD>
-	<META CONTENT="Written by Michael Sweet, Craig P. Earls, and Bill Spitzak" NAME=Author>
-	<META CONTENT="Copyright 1998-2000 by Bill Spitzak and Others." NAME=Copyright>
-	<META CONTENT="Revision 16" NAME=DocNumber>
-	<TITLE>FLTK 1.0.10 Programming Manual</TITLE>
+	<META CONTENT="Written by Michael Sweet, Craig P. Earls, and Bill Spitzak" NAME="Author">
+	<META CONTENT="Copyright 1998-2001 by Bill Spitzak and Others." NAME="Copyright">
+	<META CONTENT="Revision 17" NAME="DocNumber">
+	<TITLE>FLTK 1.0.11 Programming Manual</TITLE>
 </HEAD>
 <BODY>
 <H1 ALIGN=RIGHT><A NAME=preface>Preface</A></H1>
 This manual describes the Fast Light Tool Kit (&quot;FLTK&quot;)
-version 1.0.10, a  C++ Graphical User Interface
+version 1.0.11, a  C++ Graphical User Interface
 (&quot;GUI&quot;) toolkit for UNIX and Microsoft  Windows.  Each
 of the chapters in this manual is designed as a tutorial  for
 using FLTK, while the appendices provide a convenient reference
diff --git a/fltk.list b/fltk.list
index 04e35b78fe17519b0adb62530b53d08374545478..0226b5a28780370cf8af887a01513e723d1ece50 100644
--- a/fltk.list
+++ b/fltk.list
@@ -1,11 +1,11 @@
 #
-# "$Id: fltk.list,v 1.1.2.4 2000/12/06 13:59:46 easysw Exp $"
+# "$Id: fltk.list,v 1.1.2.5 2001/01/22 15:13:37 easysw Exp $"
 #
 # EPM product list file for the Fast Light Tool Kit (FLTK).
 #
 # (EPM can be found at http://www.easysw.com/epm)
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -26,7 +26,7 @@
 #
 
 %product Fast Light Tool Kit (FLTK)
-%copyright 1998-2000 by Bill Spitzak and others.
+%copyright 1998-2001 by Bill Spitzak and others.
 %vendor LGPL
 %license COPYING
 %readme README
@@ -381,5 +381,5 @@ f 0444 root sys /usr/share/doc/fltk/value_slider.gif documentation/value_slider.
 f 0444 root sys /usr/share/doc/fltk/widgets.html documentation/widgets.html
 
 #
-# End of "$Id: fltk.list,v 1.1.2.4 2000/12/06 13:59:46 easysw Exp $".
+# End of "$Id: fltk.list,v 1.1.2.5 2001/01/22 15:13:37 easysw Exp $".
 #
diff --git a/fltk.spec b/fltk.spec
index 27f1e63335740d2b0d7ad3971c80a6c3a33bbeb4..81444dc8005cf9503ab373e6f5ab40d5d2dd30f5 100644
--- a/fltk.spec
+++ b/fltk.spec
@@ -1,9 +1,9 @@
 #
-# "$Id: fltk.spec,v 1.1.2.7 2000/12/06 13:59:46 easysw Exp $"
+# "$Id: fltk.spec,v 1.1.2.8 2001/01/22 15:13:37 easysw Exp $"
 #
 # RPM spec file for FLTK.
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -90,5 +90,5 @@ rm -rf $RPM_BUILD_ROOT
 %{prefix}/share/doc/fltk/*
 
 #
-# End of "$Id: fltk.spec,v 1.1.2.7 2000/12/06 13:59:46 easysw Exp $".
+# End of "$Id: fltk.spec,v 1.1.2.8 2001/01/22 15:13:37 easysw Exp $".
 #
diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx
index 7bb0cd0f38e574c8135bde64690b84bbd9d19b63..734f58c233a82a9d3a9ff51cd8df1b11d645d29f 100644
--- a/fluid/Fl_Function_Type.cxx
+++ b/fluid/Fl_Function_Type.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Function_Type.cxx,v 1.15.2.15 2000/06/05 21:20:36 mike Exp $"
+// "$Id: Fl_Function_Type.cxx,v 1.15.2.16 2001/01/22 15:13:38 easysw Exp $"
 //
 // C function type code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -672,5 +672,5 @@ void Fl_Class_Type::write_code2() {
 }
 
 //
-// End of "$Id: Fl_Function_Type.cxx,v 1.15.2.15 2000/06/05 21:20:36 mike Exp $".
+// End of "$Id: Fl_Function_Type.cxx,v 1.15.2.16 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fl_Group_Type.cxx b/fluid/Fl_Group_Type.cxx
index 95b99ea5ab466692e1fc97f0c656368641840c75..eb7b10f4e5cdc96cfad9ffa14c33f7956c8dee68 100644
--- a/fluid/Fl_Group_Type.cxx
+++ b/fluid/Fl_Group_Type.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: Fl_Group_Type.cxx,v 1.4.2.6 2000/10/17 06:33:59 spitzak Exp $"
+// "$Id: Fl_Group_Type.cxx,v 1.4.2.7 2001/01/22 15:13:38 easysw Exp $"
 //
 // Fl_Group object code for the Fast Light Tool Kit (FLTK).
 //
@@ -7,7 +7,7 @@
 // the Fl_Tabs widget, with special stuff to select tab items and
 // insure that only one is visible.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -230,5 +230,5 @@ const char tile_type_name[] = "Fl_Tile";
 Fl_Tile_Type Fl_Tile_type;	// the "factory"
 
 //
-// End of "$Id: Fl_Group_Type.cxx,v 1.4.2.6 2000/10/17 06:33:59 spitzak Exp $".
+// End of "$Id: Fl_Group_Type.cxx,v 1.4.2.7 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fl_Menu_Type.cxx b/fluid/Fl_Menu_Type.cxx
index fb157b9cd8cc6fb55c534e710b25b4e7b57d2e32..f5182272ee211c515962b8acbe36d93a81827be9 100644
--- a/fluid/Fl_Menu_Type.cxx
+++ b/fluid/Fl_Menu_Type.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: Fl_Menu_Type.cxx,v 1.16.2.11 2001/01/21 07:36:45 spitzak Exp $"
+// "$Id: Fl_Menu_Type.cxx,v 1.16.2.12 2001/01/22 15:13:38 easysw Exp $"
 //
 // Menu item code for the Fast Light Tool Kit (FLTK).
 //
@@ -9,7 +9,7 @@
 // This file also contains code to make Fl_Menu_Button, Fl_Menu_Bar,
 // etc widgets.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -460,5 +460,5 @@ void shortcut_in_cb(Shortcut_Button* i, void* v) {
 }
 
 //
-// End of "$Id: Fl_Menu_Type.cxx,v 1.16.2.11 2001/01/21 07:36:45 spitzak Exp $".
+// End of "$Id: Fl_Menu_Type.cxx,v 1.16.2.12 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fl_Type.cxx b/fluid/Fl_Type.cxx
index 3f7a107465213d896aefd0e75709ba31b9124d7f..d7f400ed582b322295631d5d491a8b58b8c7cab6 100644
--- a/fluid/Fl_Type.cxx
+++ b/fluid/Fl_Type.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: Fl_Type.cxx,v 1.6.2.5 2001/01/21 07:36:45 spitzak Exp $"
+// "$Id: Fl_Type.cxx,v 1.6.2.6 2001/01/22 15:13:38 easysw Exp $"
 //
 // Widget type code for the Fast Light Tool Kit (FLTK).
 //
@@ -15,7 +15,7 @@
 // not in the linked list and are not written to files or
 // copied or otherwise examined.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -667,5 +667,5 @@ void Fl_Type::read_property(const char *c) {
 int Fl_Type::read_fdesign(const char*, const char*) {return 0;}
 
 //
-// End of "$Id: Fl_Type.cxx,v 1.6.2.5 2001/01/21 07:36:45 spitzak Exp $".
+// End of "$Id: Fl_Type.cxx,v 1.6.2.6 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fl_Type.h b/fluid/Fl_Type.h
index 3c7a218d630b35af434a6976028d1ecc3ddf5ff7..96b039c7788221b5b8e3f4943c4e73786a71459e 100644
--- a/fluid/Fl_Type.h
+++ b/fluid/Fl_Type.h
@@ -1,5 +1,5 @@
 //
-// "$Id: Fl_Type.h,v 1.5.2.10 2000/11/21 21:37:08 easysw Exp $"
+// "$Id: Fl_Type.h,v 1.5.2.11 2001/01/22 15:13:38 easysw Exp $"
 //
 // Widget type header file for the Fast Light Tool Kit (FLTK).
 //
@@ -11,7 +11,7 @@
 // instance of this object.  It could also have a "copy()" function,
 // but it was easier to implement this by using the file read/write
 // that is needed to save the setup anyways.
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -532,5 +532,5 @@ int storestring(const char *n, const char * & p, int nostrip=0);
 extern int include_H_from_C;
 
 //
-// End of "$Id: Fl_Type.h,v 1.5.2.10 2000/11/21 21:37:08 easysw Exp $".
+// End of "$Id: Fl_Type.h,v 1.5.2.11 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fl_Widget_Type.cxx b/fluid/Fl_Widget_Type.cxx
index afd2a3b3209494f36aed30f6dc9473547b8a175c..265a2fc8bbaeca9dc6cd5246e0bb23229f1d42da 100644
--- a/fluid/Fl_Widget_Type.cxx
+++ b/fluid/Fl_Widget_Type.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Widget_Type.cxx,v 1.15.2.15 2000/06/05 21:20:39 mike Exp $"
+// "$Id: Fl_Widget_Type.cxx,v 1.15.2.16 2001/01/22 15:13:38 easysw Exp $"
 //
 // Widget type code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -1766,5 +1766,5 @@ int Fl_Widget_Type::read_fdesign(const char* name, const char* value) {
 }
 
 //
-// End of "$Id: Fl_Widget_Type.cxx,v 1.15.2.15 2000/06/05 21:20:39 mike Exp $".
+// End of "$Id: Fl_Widget_Type.cxx,v 1.15.2.16 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fl_Widget_Type.h b/fluid/Fl_Widget_Type.h
index 329479641578206bb05e779f778a641b2f4e7a79..444b83b6a8caee5214ed5e644d01ef42df991308 100644
--- a/fluid/Fl_Widget_Type.h
+++ b/fluid/Fl_Widget_Type.h
@@ -1,5 +1,5 @@
 //
-// "$Id: Fl_Widget_Type.h,v 1.4.2.3 2000/06/05 21:20:40 mike Exp $"
+// "$Id: Fl_Widget_Type.h,v 1.4.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // Widget type header file for the Fast Light Tool Kit (FLTK).
 //
@@ -7,7 +7,7 @@
 // This should have the widget pointer in it, but it is still in the
 // Fl_Type base class.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -36,5 +36,5 @@ void* const LOAD = (void *)9831;
 extern Fl_Widget_Type *current_widget; // one of the selected ones
 
 //
-// End of "$Id: Fl_Widget_Type.h,v 1.4.2.3 2000/06/05 21:20:40 mike Exp $".
+// End of "$Id: Fl_Widget_Type.h,v 1.4.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fl_Window_Type.cxx b/fluid/Fl_Window_Type.cxx
index ffe53abb16a6d67751868cb33c95a89dcad905ce..371aac28439016c486b55edc7f189c4aa5ba759e 100644
--- a/fluid/Fl_Window_Type.cxx
+++ b/fluid/Fl_Window_Type.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: Fl_Window_Type.cxx,v 1.13.2.8 2000/06/05 21:20:40 mike Exp $"
+// "$Id: Fl_Window_Type.cxx,v 1.13.2.9 2001/01/22 15:13:38 easysw Exp $"
 //
 // Window type code for the Fast Light Tool Kit (FLTK).
 //
@@ -7,7 +7,7 @@
 // for interacting with the overlay, which allows the user to
 // select, move, and resize the children widgets.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -752,5 +752,5 @@ int Fl_Window_Type::read_fdesign(const char* name, const char* value) {
 }
 
 //
-// End of "$Id: Fl_Window_Type.cxx,v 1.13.2.8 2000/06/05 21:20:40 mike Exp $".
+// End of "$Id: Fl_Window_Type.cxx,v 1.13.2.9 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fluid_Image.cxx b/fluid/Fluid_Image.cxx
index f0ccedc9373c46276b4702eafbf414e456b9eeda..f5c911ffa19d128a79ac5eaba6a8edb0ae6568be 100644
--- a/fluid/Fluid_Image.cxx
+++ b/fluid/Fluid_Image.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fluid_Image.cxx,v 1.7.2.6 2000/07/07 08:38:58 spitzak Exp $"
+// "$Id: Fluid_Image.cxx,v 1.7.2.7 2001/01/22 15:13:38 easysw Exp $"
 //
 // Pixmap label support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -436,5 +436,5 @@ Fluid_Image *ui_find_image(const char *oldname) {
 }
 
 //
-// End of "$Id: Fluid_Image.cxx,v 1.7.2.6 2000/07/07 08:38:58 spitzak Exp $".
+// End of "$Id: Fluid_Image.cxx,v 1.7.2.7 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Fluid_Image.h b/fluid/Fluid_Image.h
index c2f497c68eb5f10634d7df875c88d9b7bf0f3d1c..f38706c73123ca5e8d2db962a91e21be7d93f8e1 100644
--- a/fluid/Fluid_Image.h
+++ b/fluid/Fluid_Image.h
@@ -1,5 +1,5 @@
 //
-// "$Id: Fluid_Image.h,v 1.3.2.3 2000/06/05 21:20:41 mike Exp $"
+// "$Id: Fluid_Image.h,v 1.3.2.4 2001/01/22 15:13:38 easysw Exp $"
 //
 // Pixmap image header file for the Fast Light Tool Kit (FLTK).
 //
@@ -9,7 +9,7 @@
 // in Fluid_Image.C for each type of image format.  Right now only xpm
 // files are supported.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -56,5 +56,5 @@ Fluid_Image *ui_find_image(const char *);
 #endif
 
 //
-// End of "$Id: Fluid_Image.h,v 1.3.2.3 2000/06/05 21:20:41 mike Exp $".
+// End of "$Id: Fluid_Image.h,v 1.3.2.4 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/Makefile b/fluid/Makefile
index 8c010a1adc288ea87de33d959fd96d319be93df1..cc8530bb0701365747e2bda3c4e819f7b764e7ac 100644
--- a/fluid/Makefile
+++ b/fluid/Makefile
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile,v 1.10.2.5 2000/06/05 21:20:41 mike Exp $"
+# "$Id: Makefile,v 1.10.2.6 2001/01/22 15:13:38 easysw Exp $"
 #
 # Fluid makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -83,5 +83,5 @@ rebuild:
 	./fluid -c widget_panel.fl
 
 #
-# End of "$Id: Makefile,v 1.10.2.5 2000/06/05 21:20:41 mike Exp $".
+# End of "$Id: Makefile,v 1.10.2.6 2001/01/22 15:13:38 easysw Exp $".
 #
diff --git a/fluid/Shortcut_Button.h b/fluid/Shortcut_Button.h
index 6ea284ecf0622d2a6ccdaa5980e88f7d871e321b..92cccc51506103c7c24c21f907d8ee68ffc3f654 100644
--- a/fluid/Shortcut_Button.h
+++ b/fluid/Shortcut_Button.h
@@ -1,9 +1,9 @@
 //
-// "$Id: Shortcut_Button.h,v 1.3.2.2 2000/06/05 21:20:41 mike Exp $"
+// "$Id: Shortcut_Button.h,v 1.3.2.3 2001/01/22 15:13:38 easysw Exp $"
 //
 // Shortcut header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -35,5 +35,5 @@ public:
 };
 
 //
-// End of "$Id: Shortcut_Button.h,v 1.3.2.2 2000/06/05 21:20:41 mike Exp $".
+// End of "$Id: Shortcut_Button.h,v 1.3.2.3 2001/01/22 15:13:38 easysw Exp $".
 //
diff --git a/fluid/about_panel.cxx b/fluid/about_panel.cxx
index eb696a7cb3501694df62112f43e4f31be56725be..0c5d80d1a39b781d5fae1f0eed4f913d06910b56 100644
--- a/fluid/about_panel.cxx
+++ b/fluid/about_panel.cxx
@@ -1,4 +1,4 @@
-// generated by Fast Light User Interface Designer (fluid) version 1.0008
+// generated by Fast Light User Interface Designer (fluid) version 1.0011
 
 #include "about_panel.h"
 
@@ -87,7 +87,7 @@ Fl_Window* make_about_panel(const char *copyright) {
         o->labelcolor(7);
         o->align(FL_ALIGN_TOP|FL_ALIGN_INSIDE);
       }
-      { Fl_Box* o = new Fl_Box(140, 27, 160, 113, "FLTK User\nInterface\nDesigner\nVersion 1.0.9");
+      { Fl_Box* o = new Fl_Box(140, 27, 160, 123, "FLTK User\nInterface\nDesigner\nVersion 1.0.11");
         o->box(FL_OVAL_BOX);
         o->color(12);
         o->selection_color(47);
@@ -96,7 +96,7 @@ Fl_Window* make_about_panel(const char *copyright) {
         o->labelsize(18);
         o->labelcolor(7);
       }
-      { Fl_Button* o = new Fl_Button(181, 176, 115, 30, "\251""1998-2000 by\nBill Spitzak and others");
+      { Fl_Button* o = new Fl_Button(181, 176, 115, 30, "\251""1998-2001 by\nBill Spitzak and others");
         o->box(FL_THIN_UP_BOX);
         o->labelsize(10);
         o->labelcolor(136);
diff --git a/fluid/about_panel.fl b/fluid/about_panel.fl
index a6bf6ec9bd19abb54362a049c34ebd8181629007..56f6a8e8971f9aa5098bc706e7cda4230aa85883 100644
--- a/fluid/about_panel.fl
+++ b/fluid/about_panel.fl
@@ -1,5 +1,5 @@
 # data file for the Fltk User Interface Designer (fluid)
-version 1.0008 
+version 1.0011 
 header_name {.h} 
 code_name {.cxx} 
 gridx 10 
@@ -49,14 +49,14 @@ Function {make_about_panel(const char *copyright)} {open
         label {FLTK User
 Interface
 Designer
-Version 1.0.9} selected
-        xywh {140 27 160 113} box OVAL_BOX color 12 selection_color 47 labeltype SHADOW_LABEL labelfont 1 labelsize 18 labelcolor 7
+Version 1.0.11}
+        xywh {140 27 160 123} box OVAL_BOX color 12 selection_color 47 labeltype SHADOW_LABEL labelfont 1 labelsize 18 labelcolor 7
       }
       Fl_Button {} {
-        label {�1998-2000 by
+        label {�1998-2001 by
 Bill Spitzak and others}
         callback {display_group->hide();
-copyright_box->show();}
+copyright_box->show();} selected
         xywh {181 176 115 30} box THIN_UP_BOX labelsize 10 labelcolor 136
       }
     }
diff --git a/fluid/about_panel.h b/fluid/about_panel.h
index bc9a9ab81fccddfca85d9ad4f9feb4cc64dfa11b..2f7251722a8f37140566ecaa1c93a906bde176b9 100644
--- a/fluid/about_panel.h
+++ b/fluid/about_panel.h
@@ -1,4 +1,4 @@
-// generated by Fast Light User Interface Designer (fluid) version 1.0008
+// generated by Fast Light User Interface Designer (fluid) version 1.0011
 
 #ifndef about_panel_h
 #define about_panel_h
diff --git a/fluid/code.cxx b/fluid/code.cxx
index 49dfe374373ac2365ee33a9a5cd9546290945b99..0d69757469b24871b0a3140edd888346138c5bd8 100644
--- a/fluid/code.cxx
+++ b/fluid/code.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: code.cxx,v 1.9.2.8 2000/06/16 07:08:16 bill Exp $"
+// "$Id: code.cxx,v 1.9.2.9 2001/01/22 15:13:39 easysw Exp $"
 //
 // Code output routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -405,5 +405,5 @@ void Fl_Type::write_code1() {
 void Fl_Type::write_code2() {}
 
 //
-// End of "$Id: code.cxx,v 1.9.2.8 2000/06/16 07:08:16 bill Exp $".
+// End of "$Id: code.cxx,v 1.9.2.9 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/fluid/factory.cxx b/fluid/factory.cxx
index 6ec5694112458363fe5e80b14b4f04a815d6fbf8..f953aa162e8011f73e492bede3a1cb7a534f6309 100644
--- a/fluid/factory.cxx
+++ b/fluid/factory.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: factory.cxx,v 1.4.2.8 2000/11/21 21:37:08 easysw Exp $"
+// "$Id: factory.cxx,v 1.4.2.9 2001/01/22 15:13:39 easysw Exp $"
 //
 // Widget factory code for the Fast Light Tool Kit (FLTK).
 //
@@ -11,7 +11,7 @@
 // to a factory instance for every class (both the ones defined
 // here and ones in other files)
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -722,5 +722,5 @@ int lookup_symbol(const char *name, int &v, int numberok) {
 }
 
 //
-// End of "$Id: factory.cxx,v 1.4.2.8 2000/11/21 21:37:08 easysw Exp $".
+// End of "$Id: factory.cxx,v 1.4.2.9 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/fluid/file.cxx b/fluid/file.cxx
index dae47d69079c92e7250c2aa290f3d85b1062021b..7779445995f461ee016657a089646167184c1541 100644
--- a/fluid/file.cxx
+++ b/fluid/file.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: file.cxx,v 1.7.2.5 2000/06/05 21:20:43 mike Exp $"
+// "$Id: file.cxx,v 1.7.2.6 2001/01/22 15:13:39 easysw Exp $"
 //
 // Fluid file routines for the Fast Light Tool Kit (FLTK).
 //
@@ -8,7 +8,7 @@
 // They are somewhat similar to tcl, using matching { and }
 // to quote strings.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -639,5 +639,5 @@ void read_fdesign() {
 }
 
 //
-// End of "$Id: file.cxx,v 1.7.2.5 2000/06/05 21:20:43 mike Exp $".
+// End of "$Id: file.cxx,v 1.7.2.6 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx
index cb028bf4e44075ef0fe1991c83b7fe4466c34a54..a3aa804c68ead50661dcd6a49650ec6d281b18ba 100644
--- a/fluid/fluid.cxx
+++ b/fluid/fluid.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fluid.cxx,v 1.15.2.9 2000/08/20 04:35:16 spitzak Exp $"
+// "$Id: fluid.cxx,v 1.15.2.10 2001/01/22 15:13:39 easysw Exp $"
 //
 // FLUID main entry for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -25,7 +25,7 @@
 
 const char *copyright =
 "The FLTK user interface designer version 1.0\n"
-"Copyright 1998-2000 by Bill Spitzak and others.\n"
+"Copyright 1998-2001 by Bill Spitzak and others.\n"
 "\n"
 "This library is free software; you can redistribute it and/or "
 "modify it under the terms of the GNU Library General Public "
@@ -465,5 +465,5 @@ int main(int argc,char **argv) {
 }
 
 //
-// End of "$Id: fluid.cxx,v 1.15.2.9 2000/08/20 04:35:16 spitzak Exp $".
+// End of "$Id: fluid.cxx,v 1.15.2.10 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/fluid/gif.cxx b/fluid/gif.cxx
index 4e22cf903d2fd172200a37377042d2b4b98254d5..9a9ebe313ff5e360cb79c6ae294f9b2afb6c3f6d 100644
--- a/fluid/gif.cxx
+++ b/fluid/gif.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: gif.cxx,v 1.3.2.4 2000/09/23 08:15:12 spitzak Exp $"
+// "$Id: gif.cxx,v 1.3.2.5 2001/01/22 15:13:39 easysw Exp $"
 //
 // GIF support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -359,5 +359,5 @@ int gif2xpm(
 }
 
 //
-// End of "$Id: gif.cxx,v 1.3.2.4 2000/09/23 08:15:12 spitzak Exp $".
+// End of "$Id: gif.cxx,v 1.3.2.5 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/makefiles/Makefile.cygwin b/makefiles/Makefile.cygwin
index 8b05470c80d9abeb67d861b1bc203edc04c74cc3..9db3c89008ede59231888e2961c98c86e99741c6 100644
--- a/makefiles/Makefile.cygwin
+++ b/makefiles/Makefile.cygwin
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile.cygwin,v 1.1.2.1 2000/06/20 18:47:31 carl Exp $"
+# "$Id: Makefile.cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $"
 #
 # Top-level makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -92,5 +92,5 @@ makeinclude: makefiles/makeinclude.cygwin
 	cp $< $@
 
 #
-# End of "$Id: Makefile.cygwin,v 1.1.2.1 2000/06/20 18:47:31 carl Exp $".
+# End of "$Id: Makefile.cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $".
 #
diff --git a/makefiles/Makefile.mingw b/makefiles/Makefile.mingw
index 21f5c0e851d09ac15056dd0ee821d2d1ddfb57aa..9586c982f706a23c9504a99f3aaf2eef31570bb9 100644
--- a/makefiles/Makefile.mingw
+++ b/makefiles/Makefile.mingw
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile.mingw,v 1.1.2.1 2000/06/13 20:33:34 mike Exp $"
+# "$Id: Makefile.mingw,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $"
 #
 # Top-level makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -92,5 +92,5 @@ makeinclude: makefiles/makeinclude.mingw
 	cp $< $@
 
 #
-# End of "$Id: Makefile.mingw,v 1.1.2.1 2000/06/13 20:33:34 mike Exp $".
+# End of "$Id: Makefile.mingw,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $".
 #
diff --git a/makefiles/Makefile.no-cygwin b/makefiles/Makefile.no-cygwin
index 673f6e3d5b0fa44a702679367c9381b433cf35a6..540137c306be8e9ada4e258c0b8cc62d5ea994ee 100644
--- a/makefiles/Makefile.no-cygwin
+++ b/makefiles/Makefile.no-cygwin
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile.no-cygwin,v 1.1.2.1 2000/06/20 05:47:35 bill Exp $"
+# "$Id: Makefile.no-cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $"
 #
 # Top-level makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -92,5 +92,5 @@ makeinclude: makefiles/makeinclude.no-cygwin
 	cp $< $@
 
 #
-# End of "$Id: Makefile.no-cygwin,v 1.1.2.1 2000/06/20 05:47:35 bill Exp $".
+# End of "$Id: Makefile.no-cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $".
 #
diff --git a/makefiles/Makefile.os2x b/makefiles/Makefile.os2x
index c4bfa48fd8f8113d5037f5d71ad15a6b97263ab3..0589595c839983476e1c286420ce58e1706ef80d 100644
--- a/makefiles/Makefile.os2x
+++ b/makefiles/Makefile.os2x
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile.os2x,v 1.6.2.5 2000/08/22 16:36:26 spitzak Exp $"
+# "$Id: Makefile.os2x,v 1.6.2.6 2001/01/22 15:13:39 easysw Exp $"
 #
 # Top-level makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -74,5 +74,5 @@ makeinclude: makefiles/makeinclude.os2x
 	cp $< $@
 
 #
-# End of "$Id: Makefile.os2x,v 1.6.2.5 2000/08/22 16:36:26 spitzak Exp $".
+# End of "$Id: Makefile.os2x,v 1.6.2.6 2001/01/22 15:13:39 easysw Exp $".
 #
diff --git a/makefiles/config.cygwin b/makefiles/config.cygwin
index 0c21d970494d7c5aa8bf3aa9319a106629f8652c..35c26f45738f814771bf15bbe03747de09c708a8 100644
--- a/makefiles/config.cygwin
+++ b/makefiles/config.cygwin
@@ -1,9 +1,9 @@
 /*
- * "$Id: config.cygwin,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $"
+ * "$Id: config.cygwin,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $"
  *
  * Configuration file for the Fast Light Tool Kit (FLTK).
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -159,5 +159,5 @@
 #define HAVE_POLL 0
 
 /*
- * End of "$Id: config.cygwin,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $".
+ * End of "$Id: config.cygwin,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $".
  */
diff --git a/makefiles/config.mingw b/makefiles/config.mingw
index fe0e30b52282dc4a6f39c9f7c5be9d6b1ef75f78..bfe81e9502740bac8fc573917c35ecc6d867ea1a 100644
--- a/makefiles/config.mingw
+++ b/makefiles/config.mingw
@@ -1,9 +1,9 @@
 /*
- * "$Id: config.mingw,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $"
+ * "$Id: config.mingw,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $"
  *
  * Configuration file for the Fast Light Tool Kit (FLTK).
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -159,5 +159,5 @@
 #define HAVE_POLL 0
 
 /*
- * End of "$Id: config.mingw,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $".
+ * End of "$Id: config.mingw,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $".
  */
diff --git a/makefiles/config.no-cygwin b/makefiles/config.no-cygwin
index 93a82a8e9b31d0e8d026422ec8030221d3fc149b..27dfecdc3a6c6817fc7008fa19e350bf4514a106 100644
--- a/makefiles/config.no-cygwin
+++ b/makefiles/config.no-cygwin
@@ -1,9 +1,9 @@
 /*
- * "$Id: config.no-cygwin,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $"
+ * "$Id: config.no-cygwin,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $"
  *
  * Configuration file for the Fast Light Tool Kit (FLTK).
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -159,5 +159,5 @@
 #define HAVE_POLL 0
 
 /*
- * End of "$Id: config.no-cygwin,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $".
+ * End of "$Id: config.no-cygwin,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $".
  */
diff --git a/makefiles/config.os2x b/makefiles/config.os2x
index f25d186d28630430d07f5d3626cd583c568b63e2..99eafa65919e6b1b312063a5cdf1de96c3564187 100644
--- a/makefiles/config.os2x
+++ b/makefiles/config.os2x
@@ -1,9 +1,9 @@
 /*
- * "$Id: config.os2x,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $"
+ * "$Id: config.os2x,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $"
  *
  * Configuration file for the Fast Light Tool Kit (FLTK).
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -156,5 +156,5 @@
 #define HAVE_POLL 0
 
 /*
- * End of "$Id: config.os2x,v 1.1.2.2 2000/11/20 15:44:18 easysw Exp $".
+ * End of "$Id: config.os2x,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $".
  */
diff --git a/makefiles/makeinclude.cygwin b/makefiles/makeinclude.cygwin
index 2f535bb4637be7b436053ce7c17e8c732867bb3a..1f19ccde27324bfdae6135dc15f23dbad6e4aeea 100644
--- a/makefiles/makeinclude.cygwin
+++ b/makefiles/makeinclude.cygwin
@@ -1,9 +1,9 @@
 #
-# "$Id: makeinclude.cygwin,v 1.1.2.1 2000/06/20 18:47:33 carl Exp $"
+# "$Id: makeinclude.cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $"
 #
 # Make include file for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -91,5 +91,5 @@ GLDLIBS		=  -lglu32 -lopengl32 -lgdi32 -lwsock32
 	$(CXX) -I.. $(CXXFLAGS) $< -c
 
 #
-# End of "$Id: makeinclude.cygwin,v 1.1.2.1 2000/06/20 18:47:33 carl Exp $".
+# End of "$Id: makeinclude.cygwin,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $".
 #
diff --git a/makefiles/makeinclude.mingw b/makefiles/makeinclude.mingw
index f00e15dcb61065060b1e9a7771f54454b774af71..11f995fe14293a1f9144b42951603ce45310ee05 100644
--- a/makefiles/makeinclude.mingw
+++ b/makefiles/makeinclude.mingw
@@ -1,9 +1,9 @@
 #
-# "$Id: makeinclude.mingw,v 1.1.2.2 2000/06/20 18:47:33 carl Exp $"
+# "$Id: makeinclude.mingw,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $"
 #
 # Make include file for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -91,5 +91,5 @@ GLDLIBS		= -lglu32 -lopengl32 -lgdi32 -lwsock32
 	$(CXX) -I.. $(CXXFLAGS) $< -c
 
 #
-# End of "$Id: makeinclude.mingw,v 1.1.2.2 2000/06/20 18:47:33 carl Exp $".
+# End of "$Id: makeinclude.mingw,v 1.1.2.3 2001/01/22 15:13:39 easysw Exp $".
 #
diff --git a/makefiles/makeinclude.no-cygwin b/makefiles/makeinclude.no-cygwin
index 457ec3a32d8982a31eebd8922d3c3a99cf2c02d5..f159b62a2a233877da577136f5464eba749c4fa7 100644
--- a/makefiles/makeinclude.no-cygwin
+++ b/makefiles/makeinclude.no-cygwin
@@ -1,9 +1,9 @@
 #
-# "$Id: makeinclude.no-cygwin,v 1.1.2.3 2000/06/20 18:47:33 carl Exp $"
+# "$Id: makeinclude.no-cygwin,v 1.1.2.4 2001/01/22 15:13:39 easysw Exp $"
 #
 # Make include file for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -91,5 +91,5 @@ GLDLIBS		=  -lglu32 -lopengl32 -lgdi32 -lwsock32
 	$(CXX) -I.. $(CXXFLAGS) $< -c
 
 #
-# End of "$Id: makeinclude.no-cygwin,v 1.1.2.3 2000/06/20 18:47:33 carl Exp $".
+# End of "$Id: makeinclude.no-cygwin,v 1.1.2.4 2001/01/22 15:13:39 easysw Exp $".
 #
diff --git a/makefiles/makeinclude.os2x b/makefiles/makeinclude.os2x
index f210918c342ed392b4436ddcff18fcd4cbda6b7c..04135baf4d0e26b084f73094ee0ac46b115dc764 100644
--- a/makefiles/makeinclude.os2x
+++ b/makefiles/makeinclude.os2x
@@ -1,9 +1,9 @@
 #
-# "$Id: makeinclude.os2x,v 1.1.2.1 2000/08/19 19:03:46 spitzak Exp $"
+# "$Id: makeinclude.os2x,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $"
 #
 # Make include file for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -71,7 +71,7 @@ GLDLIBS     = $(LDFLAGS) -lXext -lX11 -lExtensions
 	$(CXX) -I.. $(CXXFLAGS) $< -c
 
 #
-# End of "$Id: makeinclude.os2x,v 1.1.2.1 2000/08/19 19:03:46 spitzak Exp $".
+# End of "$Id: makeinclude.os2x,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $".
 #
 
 export
diff --git a/makeinclude.in b/makeinclude.in
index 8147764c4b86b24e845e826ee2333b380c17da94..23985fd75ceca019c9e4f0ad611d39edd4319417 100644
--- a/makeinclude.in
+++ b/makeinclude.in
@@ -1,10 +1,10 @@
 #
-# "$Id: makeinclude.in,v 1.7.2.7 2000/11/20 15:10:00 easysw Exp $"
+# "$Id: makeinclude.in,v 1.7.2.8 2001/01/22 15:13:37 easysw Exp $"
 #
 # Make include file for the Fast Light Tool Kit (FLTK).
 # @configure_input@
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -71,5 +71,5 @@ GLDLIBS		=@LDFLAGS@ @LIBS@ @GLLIB@ -lX11 -lXext @X_EXTRA_LIBS@ -lm
 	$(CXX) -I.. $(CXXFLAGS) -c $<
 
 #
-# End of "$Id: makeinclude.in,v 1.7.2.7 2000/11/20 15:10:00 easysw Exp $".
+# End of "$Id: makeinclude.in,v 1.7.2.8 2001/01/22 15:13:37 easysw Exp $".
 #
diff --git a/src/Fl.cxx b/src/Fl.cxx
index 2296e0c740da22c6fae995b4ba30433fbce33624..3b5156d1d99adce8199ff3c8455da8bf0152e3c4 100644
--- a/src/Fl.cxx
+++ b/src/Fl.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl.cxx,v 1.24.2.38 2001/01/21 06:00:58 spitzak Exp $"
+// "$Id: Fl.cxx,v 1.24.2.39 2001/01/22 15:13:39 easysw Exp $"
 //
 // Main event handling code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -781,5 +781,5 @@ void Fl_Window::flush() {
 }
 
 //
-// End of "$Id: Fl.cxx,v 1.24.2.38 2001/01/21 06:00:58 spitzak Exp $".
+// End of "$Id: Fl.cxx,v 1.24.2.39 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Adjuster.cxx b/src/Fl_Adjuster.cxx
index c31ea252acabee7bf12eea9c22a105f5d72fb503..dc8a39b5061104a7a0d617efb5bd373648a5eaa8 100644
--- a/src/Fl_Adjuster.cxx
+++ b/src/Fl_Adjuster.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Adjuster.cxx,v 1.5.2.2 2000/06/05 21:20:47 mike Exp $"
+// "$Id: Fl_Adjuster.cxx,v 1.5.2.3 2001/01/22 15:13:39 easysw Exp $"
 //
 // Adjuster widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -130,5 +130,5 @@ Fl_Adjuster::Fl_Adjuster(int x, int y, int w, int h, const char* l)
 }
 
 //
-// End of "$Id: Fl_Adjuster.cxx,v 1.5.2.2 2000/06/05 21:20:47 mike Exp $".
+// End of "$Id: Fl_Adjuster.cxx,v 1.5.2.3 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Bitmap.cxx b/src/Fl_Bitmap.cxx
index 848fd1a3cd5ab48a9478cd681a6fa952d8dd1421..91c9fd4d374ae72a60bd7147d04d612aec247636 100644
--- a/src/Fl_Bitmap.cxx
+++ b/src/Fl_Bitmap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Bitmap.cxx,v 1.5.2.3 2000/06/05 21:20:47 mike Exp $"
+// "$Id: Fl_Bitmap.cxx,v 1.5.2.4 2001/01/22 15:13:39 easysw Exp $"
 //
 // Bitmap drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -125,5 +125,5 @@ void Fl_Bitmap::label(Fl_Menu_Item* o) {
 }
 
 //
-// End of "$Id: Fl_Bitmap.cxx,v 1.5.2.3 2000/06/05 21:20:47 mike Exp $".
+// End of "$Id: Fl_Bitmap.cxx,v 1.5.2.4 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Box.cxx b/src/Fl_Box.cxx
index 16c24ceab9beccece1849c7df10d124d91f72a80..86f408a9a067ca94409d8a4f948aacac929df894 100644
--- a/src/Fl_Box.cxx
+++ b/src/Fl_Box.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Box.cxx,v 1.4.2.2 2000/06/05 21:20:47 mike Exp $"
+// "$Id: Fl_Box.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $"
 //
 // Box widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -34,5 +34,5 @@ void Fl_Box::draw() {
 }
 
 //
-// End of "$Id: Fl_Box.cxx,v 1.4.2.2 2000/06/05 21:20:47 mike Exp $".
+// End of "$Id: Fl_Box.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Browser.cxx b/src/Fl_Browser.cxx
index 5480ebe52689151f429aaf9b9c5bacb6011fd4c0..35fd98aaf3b52dc4ed1f2ad7ef15b51c298ddc0a 100644
--- a/src/Fl_Browser.cxx
+++ b/src/Fl_Browser.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Browser.cxx,v 1.9.2.11 2000/06/05 21:20:47 mike Exp $"
+// "$Id: Fl_Browser.cxx,v 1.9.2.12 2001/01/22 15:13:39 easysw Exp $"
 //
 // Browser widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -493,5 +493,5 @@ int Fl_Browser::value() const {
 }
 
 //
-// End of "$Id: Fl_Browser.cxx,v 1.9.2.11 2000/06/05 21:20:47 mike Exp $".
+// End of "$Id: Fl_Browser.cxx,v 1.9.2.12 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Browser_.cxx b/src/Fl_Browser_.cxx
index 4df4d7d1526df7aa5bcc23b5eb9d65a0ab8b34ff..903479b236e5118a09b48a8a7b142ab04d257a97 100644
--- a/src/Fl_Browser_.cxx
+++ b/src/Fl_Browser_.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Browser_.cxx,v 1.10.2.14 2000/06/30 04:23:13 spitzak Exp $"
+// "$Id: Fl_Browser_.cxx,v 1.10.2.15 2001/01/22 15:13:39 easysw Exp $"
 //
 // Base Browser widget class for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -706,5 +706,5 @@ void Fl_Browser_::item_select(void*, int) {}
 int Fl_Browser_::item_selected(void* l) const {return l==selection_;}
 
 //
-// End of "$Id: Fl_Browser_.cxx,v 1.10.2.14 2000/06/30 04:23:13 spitzak Exp $".
+// End of "$Id: Fl_Browser_.cxx,v 1.10.2.15 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Browser_load.cxx b/src/Fl_Browser_load.cxx
index 69e3a904d329552f4b48ae0fdf9fe88e2bc2ef45..7858d652a50801f7f261f30859ab0360535c4916 100644
--- a/src/Fl_Browser_load.cxx
+++ b/src/Fl_Browser_load.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Browser_load.cxx,v 1.4.2.2 2000/06/05 21:20:48 mike Exp $"
+// "$Id: Fl_Browser_load.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $"
 //
 // File loading routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -51,5 +51,5 @@ int Fl_Browser::load(const char *filename) {
 }
 
 //
-// End of "$Id: Fl_Browser_load.cxx,v 1.4.2.2 2000/06/05 21:20:48 mike Exp $".
+// End of "$Id: Fl_Browser_load.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Button.cxx b/src/Fl_Button.cxx
index eb9b9362bf727dc0837999a0c768391059c319ff..34320b7ba89c046691c52a3a34472bedd5a2ed86 100644
--- a/src/Fl_Button.cxx
+++ b/src/Fl_Button.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Button.cxx,v 1.4.2.5 2000/07/07 08:38:58 spitzak Exp $"
+// "$Id: Fl_Button.cxx,v 1.4.2.6 2001/01/22 15:13:39 easysw Exp $"
 //
 // Button widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -118,5 +118,5 @@ Fl_Button::Fl_Button(int x,int y,int w,int h, const char *l)
 }
 
 //
-// End of "$Id: Fl_Button.cxx,v 1.4.2.5 2000/07/07 08:38:58 spitzak Exp $".
+// End of "$Id: Fl_Button.cxx,v 1.4.2.6 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Chart.cxx b/src/Fl_Chart.cxx
index 4b5f906e8d0811775fe02d6fe555f6666364fc32..916ca698d5770910710903dcb8eb9b8369c7185a 100644
--- a/src/Fl_Chart.cxx
+++ b/src/Fl_Chart.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Chart.cxx,v 1.5.2.5 2000/11/20 19:02:20 easysw Exp $"
+// "$Id: Fl_Chart.cxx,v 1.5.2.6 2001/01/22 15:13:39 easysw Exp $"
 //
 // Forms-compatible chart widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -378,5 +378,5 @@ void Fl_Chart::maxsize(int m) {
 }
 
 //
-// End of "$Id: Fl_Chart.cxx,v 1.5.2.5 2000/11/20 19:02:20 easysw Exp $".
+// End of "$Id: Fl_Chart.cxx,v 1.5.2.6 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Check_Button.cxx b/src/Fl_Check_Button.cxx
index ab3cc3e911534fddfef4ea393d66af6d109db0ea..f40b0f8f36fdea4a72bebc53f7ecc835fa8bd7ff 100644
--- a/src/Fl_Check_Button.cxx
+++ b/src/Fl_Check_Button.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Check_Button.cxx,v 1.4.2.2 2000/06/05 21:20:49 mike Exp $"
+// "$Id: Fl_Check_Button.cxx,v 1.4.2.3 2001/01/22 15:13:39 easysw Exp $"
 //
 // Check button widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
diff --git a/src/Fl_Choice.cxx b/src/Fl_Choice.cxx
index 0c00a23a360cf966b1b90b2f7cc12f2a1c180902..c55dde5a357ac99ffae2679aa96666848d34583e 100644
--- a/src/Fl_Choice.cxx
+++ b/src/Fl_Choice.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Choice.cxx,v 1.10.2.4 2000/06/05 21:20:49 mike Exp $"
+// "$Id: Fl_Choice.cxx,v 1.10.2.5 2001/01/22 15:13:39 easysw Exp $"
 //
 // Choice widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -90,5 +90,5 @@ int Fl_Choice::handle(int e) {
 }
 
 //
-// End of "$Id: Fl_Choice.cxx,v 1.10.2.4 2000/06/05 21:20:49 mike Exp $".
+// End of "$Id: Fl_Choice.cxx,v 1.10.2.5 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Clock.cxx b/src/Fl_Clock.cxx
index c237804e294793fb41fb245dc6e7835cfa9d63b1..f05e3f77bb4215c72bb969742d12f1a926d8430b 100644
--- a/src/Fl_Clock.cxx
+++ b/src/Fl_Clock.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Clock.cxx,v 1.8.2.3 2000/06/05 21:20:49 mike Exp $"
+// "$Id: Fl_Clock.cxx,v 1.8.2.4 2001/01/22 15:13:39 easysw Exp $"
 //
 // Clock widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -170,5 +170,5 @@ Fl_Clock::~Fl_Clock() {
 }
 
 //
-// End of "$Id: Fl_Clock.cxx,v 1.8.2.3 2000/06/05 21:20:49 mike Exp $".
+// End of "$Id: Fl_Clock.cxx,v 1.8.2.4 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Color_Chooser.cxx b/src/Fl_Color_Chooser.cxx
index 80f7e332de10cec7fcd4afa4b341cef466b1c8bd..91076241ed1667f11f19463ea06c84eba254619d 100644
--- a/src/Fl_Color_Chooser.cxx
+++ b/src/Fl_Color_Chooser.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Color_Chooser.cxx,v 1.7.2.3 2000/06/05 21:20:50 mike Exp $"
+// "$Id: Fl_Color_Chooser.cxx,v 1.7.2.4 2001/01/22 15:13:39 easysw Exp $"
 //
 // Color chooser for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -431,5 +431,5 @@ int fl_color_chooser(const char* name, uchar& r, uchar& g, uchar& b) {
 }
 
 //
-// End of "$Id: Fl_Color_Chooser.cxx,v 1.7.2.3 2000/06/05 21:20:50 mike Exp $".
+// End of "$Id: Fl_Color_Chooser.cxx,v 1.7.2.4 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Counter.cxx b/src/Fl_Counter.cxx
index 6f361d1fe6f712819195f9b68158e057a23df86d..06f26ff30cb05683d77fc0a7445843d43f7d7256 100644
--- a/src/Fl_Counter.cxx
+++ b/src/Fl_Counter.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Counter.cxx,v 1.8.2.2 2000/06/05 21:20:50 mike Exp $"
+// "$Id: Fl_Counter.cxx,v 1.8.2.3 2001/01/22 15:13:39 easysw Exp $"
 //
 // Counter widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -165,5 +165,5 @@ Fl_Counter::Fl_Counter(int x, int y, int w, int h, const char* l)
 }
 
 //
-// End of "$Id: Fl_Counter.cxx,v 1.8.2.2 2000/06/05 21:20:50 mike Exp $".
+// End of "$Id: Fl_Counter.cxx,v 1.8.2.3 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Dial.cxx b/src/Fl_Dial.cxx
index 43d818ce5cab1c694eec2fe0013458f2796c9393..46ae07caf2519c1b68e31836d0a062b31e746337 100644
--- a/src/Fl_Dial.cxx
+++ b/src/Fl_Dial.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Dial.cxx,v 1.12.2.2 2000/06/05 21:20:50 mike Exp $"
+// "$Id: Fl_Dial.cxx,v 1.12.2.3 2001/01/22 15:13:39 easysw Exp $"
 //
 // Circular dial widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -131,5 +131,5 @@ Fl_Dial::Fl_Dial(int x, int y, int w, int h, const char* l)
 }
 
 //
-// End of "$Id: Fl_Dial.cxx,v 1.12.2.2 2000/06/05 21:20:50 mike Exp $".
+// End of "$Id: Fl_Dial.cxx,v 1.12.2.3 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Double_Window.cxx b/src/Fl_Double_Window.cxx
index 00b6479f271e5c3ead81177c079dfbfa91824afa..dd60ba90388ecc684e40990c8ba25111ef2d63eb 100644
--- a/src/Fl_Double_Window.cxx
+++ b/src/Fl_Double_Window.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Double_Window.cxx,v 1.12.2.3 2000/11/20 19:02:20 easysw Exp $"
+// "$Id: Fl_Double_Window.cxx,v 1.12.2.4 2001/01/22 15:13:39 easysw Exp $"
 //
 // Double-buffered window code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -192,5 +192,5 @@ Fl_Double_Window::~Fl_Double_Window() {
 }
 
 //
-// End of "$Id: Fl_Double_Window.cxx,v 1.12.2.3 2000/11/20 19:02:20 easysw Exp $".
+// End of "$Id: Fl_Double_Window.cxx,v 1.12.2.4 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Font.H b/src/Fl_Font.H
index 0d183762fdde2fc829dc123a7c90aa7b09c39a3b..425d00dc340da1691769a4c43c25563a9760fea1 100644
--- a/src/Fl_Font.H
+++ b/src/Fl_Font.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Font.H,v 1.6.2.2 2000/06/05 21:20:50 mike Exp $"
+// "$Id: Fl_Font.H,v 1.6.2.3 2001/01/22 15:13:39 easysw Exp $"
 //
 // Font definitions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -78,5 +78,5 @@ FL_EXPORT char *fl_find_fontsize(char *name);
 #endif
 
 //
-// End of "$Id: Fl_Font.H,v 1.6.2.2 2000/06/05 21:20:50 mike Exp $".
+// End of "$Id: Fl_Font.H,v 1.6.2.3 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Gl_Choice.H b/src/Fl_Gl_Choice.H
index 7925419b1da3830ff7c665838bf1fdcb3b2c5941..986ee5d651ff95091d4ddfa4028f1ccc7387e808 100644
--- a/src/Fl_Gl_Choice.H
+++ b/src/Fl_Gl_Choice.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Gl_Choice.H,v 1.4.2.4 2000/06/05 21:20:51 mike Exp $"
+// "$Id: Fl_Gl_Choice.H,v 1.4.2.5 2001/01/22 15:13:39 easysw Exp $"
 //
 // OpenGL definitions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -91,5 +91,5 @@ void fl_no_gl_context();
 #endif
 
 //
-// End of "$Id: Fl_Gl_Choice.H,v 1.4.2.4 2000/06/05 21:20:51 mike Exp $".
+// End of "$Id: Fl_Gl_Choice.H,v 1.4.2.5 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Gl_Choice.cxx b/src/Fl_Gl_Choice.cxx
index e9a663dd94062a1206663382a9de8aa59efc7a91..31285e9c6ce110b02e1b5a2221ca97e91f97b6a9 100644
--- a/src/Fl_Gl_Choice.cxx
+++ b/src/Fl_Gl_Choice.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Gl_Choice.cxx,v 1.5.2.4 2000/06/05 21:20:51 mike Exp $"
+// "$Id: Fl_Gl_Choice.cxx,v 1.5.2.5 2001/01/22 15:13:39 easysw Exp $"
 //
 // OpenGL visual selection code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -213,5 +213,5 @@ void fl_no_gl_context() {
 #endif
 
 //
-// End of "$Id: Fl_Gl_Choice.cxx,v 1.5.2.4 2000/06/05 21:20:51 mike Exp $".
+// End of "$Id: Fl_Gl_Choice.cxx,v 1.5.2.5 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Gl_Overlay.cxx b/src/Fl_Gl_Overlay.cxx
index e50721cbcf11b75b26dead26113c8d39a4efe5f2..fd040abb0e66ca7f944b82810f2472c01bb04eed 100644
--- a/src/Fl_Gl_Overlay.cxx
+++ b/src/Fl_Gl_Overlay.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Gl_Overlay.cxx,v 1.5.2.13 2000/12/06 15:45:12 easysw Exp $"
+// "$Id: Fl_Gl_Overlay.cxx,v 1.5.2.14 2001/01/22 15:13:39 easysw Exp $"
 //
 // OpenGL overlay code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -209,5 +209,5 @@ void Fl_Gl_Window::hide_overlay() {
 #endif
 
 //
-// End of "$Id: Fl_Gl_Overlay.cxx,v 1.5.2.13 2000/12/06 15:45:12 easysw Exp $".
+// End of "$Id: Fl_Gl_Overlay.cxx,v 1.5.2.14 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Gl_Window.cxx b/src/Fl_Gl_Window.cxx
index d8a64fd8c08e1c4c76dfdfe341915cd718b6c680..87806a54aa4030f8fdedc4967e18ae2d33498613 100644
--- a/src/Fl_Gl_Window.cxx
+++ b/src/Fl_Gl_Window.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Gl_Window.cxx,v 1.12.2.19 2000/12/12 08:57:30 spitzak Exp $"
+// "$Id: Fl_Gl_Window.cxx,v 1.12.2.20 2001/01/22 15:13:39 easysw Exp $"
 //
 // OpenGL window code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -337,5 +337,5 @@ void Fl_Gl_Window::draw_overlay() {}
 #endif
 
 //
-// End of "$Id: Fl_Gl_Window.cxx,v 1.12.2.19 2000/12/12 08:57:30 spitzak Exp $".
+// End of "$Id: Fl_Gl_Window.cxx,v 1.12.2.20 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Group.cxx b/src/Fl_Group.cxx
index 655110b9d4c9b970620aef630344dd2771e11c48..19e65b8ec64304e9978d53875f6feddb4ab45a0e 100644
--- a/src/Fl_Group.cxx
+++ b/src/Fl_Group.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Group.cxx,v 1.8.2.7 2000/10/21 20:01:56 spitzak Exp $"
+// "$Id: Fl_Group.cxx,v 1.8.2.8 2001/01/22 15:13:39 easysw Exp $"
 //
 // Group widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -513,5 +513,5 @@ void Fl_Group::draw_outside_label(const Fl_Widget& w) const {
 }
 
 //
-// End of "$Id: Fl_Group.cxx,v 1.8.2.7 2000/10/21 20:01:56 spitzak Exp $".
+// End of "$Id: Fl_Group.cxx,v 1.8.2.8 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Image.cxx b/src/Fl_Image.cxx
index 246184831887b282164572f4e3f8cd4a18007943..843a889637ff741249f1bccbc980ec1ff294403a 100644
--- a/src/Fl_Image.cxx
+++ b/src/Fl_Image.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Image.cxx,v 1.5.2.2 2000/06/05 21:20:52 mike Exp $"
+// "$Id: Fl_Image.cxx,v 1.5.2.3 2001/01/22 15:13:39 easysw Exp $"
 //
 // Image drawing code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -86,5 +86,5 @@ void Fl_Image::label(Fl_Menu_Item* o) {
 }
 
 //
-// End of "$Id: Fl_Image.cxx,v 1.5.2.2 2000/06/05 21:20:52 mike Exp $".
+// End of "$Id: Fl_Image.cxx,v 1.5.2.3 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Input.cxx b/src/Fl_Input.cxx
index 79a6e2e2efde7eb0b3f2e1a8bc025eb5d994572f..68a4b4ee6afdc6d7a1b4dcb2c8a36bf80ebfd256 100644
--- a/src/Fl_Input.cxx
+++ b/src/Fl_Input.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Input.cxx,v 1.10.2.13 2000/10/17 07:23:42 spitzak Exp $"
+// "$Id: Fl_Input.cxx,v 1.10.2.14 2001/01/22 15:13:39 easysw Exp $"
 //
 // Input widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -276,5 +276,5 @@ Fl_Input::Fl_Input(int x, int y, int w, int h, const char *l)
 }
 
 //
-// End of "$Id: Fl_Input.cxx,v 1.10.2.13 2000/10/17 07:23:42 spitzak Exp $".
+// End of "$Id: Fl_Input.cxx,v 1.10.2.14 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Input_.cxx b/src/Fl_Input_.cxx
index 7f4d40f13188666f43a75e0067b5652221b80169..cba64c70d8810fabaa7d3e65ea98ccf70602b6dd 100644
--- a/src/Fl_Input_.cxx
+++ b/src/Fl_Input_.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Input_.cxx,v 1.21.2.10 2000/12/12 08:57:30 spitzak Exp $"
+// "$Id: Fl_Input_.cxx,v 1.21.2.11 2001/01/22 15:13:39 easysw Exp $"
 //
 // Common input widget routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -817,5 +817,5 @@ Fl_Input_::~Fl_Input_() {
 }
 
 //
-// End of "$Id: Fl_Input_.cxx,v 1.21.2.10 2000/12/12 08:57:30 spitzak Exp $".
+// End of "$Id: Fl_Input_.cxx,v 1.21.2.11 2001/01/22 15:13:39 easysw Exp $".
 //
diff --git a/src/Fl_Light_Button.cxx b/src/Fl_Light_Button.cxx
index 39ffe6c86d5406cfa29eabb36f2a2f612a85bc2d..ed48f55b6f279a98ddbef5b204491f7972779276 100644
--- a/src/Fl_Light_Button.cxx
+++ b/src/Fl_Light_Button.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Light_Button.cxx,v 1.4.2.2 2000/06/05 21:20:52 mike Exp $"
+// "$Id: Fl_Light_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Lighted button widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -70,5 +70,5 @@ Fl_Light_Button::Fl_Light_Button(int x, int y, int w, int h, const char* l)
 }
 
 //
-// End of "$Id: Fl_Light_Button.cxx,v 1.4.2.2 2000/06/05 21:20:52 mike Exp $".
+// End of "$Id: Fl_Light_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Menu.cxx b/src/Fl_Menu.cxx
index b58105bbc21e08d46ae416f1974ffab73e21bf9c..56d69d7c6c4d07539b53c850a8a1fefd4a42cdea 100644
--- a/src/Fl_Menu.cxx
+++ b/src/Fl_Menu.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu.cxx,v 1.18.2.11 2000/11/20 19:02:20 easysw Exp $"
+// "$Id: Fl_Menu.cxx,v 1.18.2.12 2001/01/22 15:13:40 easysw Exp $"
 //
 // Menu code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -743,5 +743,5 @@ const Fl_Menu_Item* Fl_Menu_Item::test_shortcut() const {
 }
 
 //
-// End of "$Id: Fl_Menu.cxx,v 1.18.2.11 2000/11/20 19:02:20 easysw Exp $".
+// End of "$Id: Fl_Menu.cxx,v 1.18.2.12 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Menu_.cxx b/src/Fl_Menu_.cxx
index d5e0e468ec57335f589e550e324702ec5a22f7a7..76190328bd13434b3a534ab39741d1689edaee47 100644
--- a/src/Fl_Menu_.cxx
+++ b/src/Fl_Menu_.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_.cxx,v 1.7.2.7 2000/06/05 21:20:54 mike Exp $"
+// "$Id: Fl_Menu_.cxx,v 1.7.2.8 2001/01/22 15:13:40 easysw Exp $"
 //
 // Common menu code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -172,5 +172,5 @@ void Fl_Menu_::clear() {
 }
 
 //
-// End of "$Id: Fl_Menu_.cxx,v 1.7.2.7 2000/06/05 21:20:54 mike Exp $".
+// End of "$Id: Fl_Menu_.cxx,v 1.7.2.8 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Menu_Bar.cxx b/src/Fl_Menu_Bar.cxx
index 176492b163f8394211a07e45d7d3b5ba70d854e2..72e4618bf0038dee7a3207b8c84cbe7e77d4d531 100644
--- a/src/Fl_Menu_Bar.cxx
+++ b/src/Fl_Menu_Bar.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_Bar.cxx,v 1.7.2.5 2000/09/23 08:21:52 spitzak Exp $"
+// "$Id: Fl_Menu_Bar.cxx,v 1.7.2.6 2001/01/22 15:13:40 easysw Exp $"
 //
 // Menu bar widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -61,5 +61,5 @@ int Fl_Menu_Bar::handle(int event) {
 }
 
 //
-// End of "$Id: Fl_Menu_Bar.cxx,v 1.7.2.5 2000/09/23 08:21:52 spitzak Exp $".
+// End of "$Id: Fl_Menu_Bar.cxx,v 1.7.2.6 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Menu_Button.cxx b/src/Fl_Menu_Button.cxx
index dffab6749f446fd1f6cba43aee0f7eb4e9c30174..36661a8758699ceeed70d985e05b477c52364fbf 100644
--- a/src/Fl_Menu_Button.cxx
+++ b/src/Fl_Menu_Button.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_Button.cxx,v 1.4.2.2 2000/06/05 21:20:54 mike Exp $"
+// "$Id: Fl_Menu_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Menu button widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -78,5 +78,5 @@ Fl_Menu_Button::Fl_Menu_Button(int X,int Y,int W,int H,const char *l)
 }
 
 //
-// End of "$Id: Fl_Menu_Button.cxx,v 1.4.2.2 2000/06/05 21:20:54 mike Exp $".
+// End of "$Id: Fl_Menu_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Menu_Window.cxx b/src/Fl_Menu_Window.cxx
index a07cec556996d30ea6dace511bdf67dd6b94e1e4..2f11e8306b9ee42b4238662bd5160263e57cba19 100644
--- a/src/Fl_Menu_Window.cxx
+++ b/src/Fl_Menu_Window.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_Window.cxx,v 1.8.2.4 2000/11/20 19:02:20 easysw Exp $"
+// "$Id: Fl_Menu_Window.cxx,v 1.8.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // Menu window code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -97,5 +97,5 @@ Fl_Menu_Window::~Fl_Menu_Window() {
 }
 
 //
-// End of "$Id: Fl_Menu_Window.cxx,v 1.8.2.4 2000/11/20 19:02:20 easysw Exp $".
+// End of "$Id: Fl_Menu_Window.cxx,v 1.8.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Menu_add.cxx b/src/Fl_Menu_add.cxx
index 21b5386e7a977b559243014fe79081cdca6fb23b..b1f0edf38c84b5a2d862419baa43af0a3bcdb1a5 100644
--- a/src/Fl_Menu_add.cxx
+++ b/src/Fl_Menu_add.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_add.cxx,v 1.9.2.9 2000/11/20 19:02:20 easysw Exp $"
+// "$Id: Fl_Menu_add.cxx,v 1.9.2.10 2001/01/22 15:13:40 easysw Exp $"
 //
 // Menu utilities for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -253,5 +253,5 @@ void Fl_Menu_::remove(int i) {
 }
 
 //
-// End of "$Id: Fl_Menu_add.cxx,v 1.9.2.9 2000/11/20 19:02:20 easysw Exp $".
+// End of "$Id: Fl_Menu_add.cxx,v 1.9.2.10 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Menu_global.cxx b/src/Fl_Menu_global.cxx
index c285075b38019fa24bf9b15dc3de5733ae90c321..0dcc0daf60ea0e4a869e7f95f65746dddaa25039 100644
--- a/src/Fl_Menu_global.cxx
+++ b/src/Fl_Menu_global.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Menu_global.cxx,v 1.5.2.3 2000/06/05 21:20:55 mike Exp $"
+// "$Id: Fl_Menu_global.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Global menu shortcut code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -44,5 +44,5 @@ void Fl_Menu_::global() {
 }
 
 //
-// End of "$Id: Fl_Menu_global.cxx,v 1.5.2.3 2000/06/05 21:20:55 mike Exp $".
+// End of "$Id: Fl_Menu_global.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Multi_Label.cxx b/src/Fl_Multi_Label.cxx
index f5c6ccbe4c6205ff7a80096bfb50ba55b30216d9..f184e1c846ac39694295c262a4621991c65100fd 100644
--- a/src/Fl_Multi_Label.cxx
+++ b/src/Fl_Multi_Label.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Multi_Label.cxx,v 1.4.2.2 2000/06/05 21:20:55 mike Exp $"
+// "$Id: Fl_Multi_Label.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Multi-label widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -74,5 +74,5 @@ void Fl_Multi_Label::label(Fl_Menu_Item* o) {
 }
 
 //
-// End of "$Id: Fl_Multi_Label.cxx,v 1.4.2.2 2000/06/05 21:20:55 mike Exp $".
+// End of "$Id: Fl_Multi_Label.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Output.cxx b/src/Fl_Output.cxx
index c3432a42aa52f7387b533544b8c5f512df402488..2ff8accec5fb540574fd7d17cee2e46f4f1c15c6 100644
--- a/src/Fl_Output.cxx
+++ b/src/Fl_Output.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Output.cxx,v 1.6.2.2 2000/06/05 21:20:55 mike Exp $"
+// "$Id: Fl_Output.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Output widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -46,5 +46,5 @@ int Fl_Output::handle(int event) {
 }
 
 //
-// End of "$Id: Fl_Output.cxx,v 1.6.2.2 2000/06/05 21:20:55 mike Exp $".
+// End of "$Id: Fl_Output.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Overlay_Window.cxx b/src/Fl_Overlay_Window.cxx
index d172465bf1a3dcb19355e29ff3f9c564578f73a8..57f029a1fa0690be8aea1f04142f200f7350fabe 100644
--- a/src/Fl_Overlay_Window.cxx
+++ b/src/Fl_Overlay_Window.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Overlay_Window.cxx,v 1.7.2.4 2000/11/20 19:02:20 easysw Exp $"
+// "$Id: Fl_Overlay_Window.cxx,v 1.7.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // Overlay window code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -140,5 +140,5 @@ void Fl_Overlay_Window::redraw_overlay() {
 #endif
 
 //
-// End of "$Id: Fl_Overlay_Window.cxx,v 1.7.2.4 2000/11/20 19:02:20 easysw Exp $".
+// End of "$Id: Fl_Overlay_Window.cxx,v 1.7.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Pack.cxx b/src/Fl_Pack.cxx
index dac8e4501068b8ab85a8330d0ee1137624be900a..af5f94194b974e673e96710e6af57d45142f831c 100644
--- a/src/Fl_Pack.cxx
+++ b/src/Fl_Pack.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Pack.cxx,v 1.6.2.3 2000/06/20 05:47:37 bill Exp $"
+// "$Id: Fl_Pack.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Packing widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -112,5 +112,5 @@ void Fl_Pack::draw() {
 }
 
 //
-// End of "$Id: Fl_Pack.cxx,v 1.6.2.3 2000/06/20 05:47:37 bill Exp $".
+// End of "$Id: Fl_Pack.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Pixmap.cxx b/src/Fl_Pixmap.cxx
index 632144ea6e493272dfa32b95a8948b9cf4ce4f21..846383b55b27258239e496818d62e996a16487d8 100644
--- a/src/Fl_Pixmap.cxx
+++ b/src/Fl_Pixmap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Pixmap.cxx,v 1.9.2.3 2000/09/23 07:33:39 spitzak Exp $"
+// "$Id: Fl_Pixmap.cxx,v 1.9.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Pixmap drawing code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -194,5 +194,5 @@ void Fl_Pixmap::label(Fl_Menu_Item* o) {
 }
 
 //
-// End of "$Id: Fl_Pixmap.cxx,v 1.9.2.3 2000/09/23 07:33:39 spitzak Exp $".
+// End of "$Id: Fl_Pixmap.cxx,v 1.9.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Positioner.cxx b/src/Fl_Positioner.cxx
index 244e6c1a85460af21d54d5ae833f5a12f8d12256..3636cb053aede47b798fc9750a7a53ea6aff88bd 100644
--- a/src/Fl_Positioner.cxx
+++ b/src/Fl_Positioner.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Positioner.cxx,v 1.4.2.2 2000/06/05 21:20:55 mike Exp $"
+// "$Id: Fl_Positioner.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Positioner widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -129,5 +129,5 @@ void Fl_Positioner::ybounds(double a, double b) {
 }
 
 //
-// End of "$Id: Fl_Positioner.cxx,v 1.4.2.2 2000/06/05 21:20:55 mike Exp $".
+// End of "$Id: Fl_Positioner.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Repeat_Button.cxx b/src/Fl_Repeat_Button.cxx
index c16da165b6bc9375509c32af9b2812d132052c59..dbe60f473e675f9ebd772f4924fc4272defc453c 100644
--- a/src/Fl_Repeat_Button.cxx
+++ b/src/Fl_Repeat_Button.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Repeat_Button.cxx,v 1.4.2.3 2000/06/05 21:20:56 mike Exp $"
+// "$Id: Fl_Repeat_Button.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Repeat button widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -61,5 +61,5 @@ int Fl_Repeat_Button::handle(int event) {
 }
 
 //
-// End of "$Id: Fl_Repeat_Button.cxx,v 1.4.2.3 2000/06/05 21:20:56 mike Exp $".
+// End of "$Id: Fl_Repeat_Button.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Return_Button.cxx b/src/Fl_Return_Button.cxx
index 36e1f97a8784054cdf492496f36bd5cb0ce88609..c29f2e26e1264ef35d7fc388536deb7352db6f1b 100644
--- a/src/Fl_Return_Button.cxx
+++ b/src/Fl_Return_Button.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Return_Button.cxx,v 1.5.2.2 2000/06/05 21:20:56 mike Exp $"
+// "$Id: Fl_Return_Button.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Return button widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -65,5 +65,5 @@ int Fl_Return_Button::handle(int event) {
 }
 
 //
-// End of "$Id: Fl_Return_Button.cxx,v 1.5.2.2 2000/06/05 21:20:56 mike Exp $".
+// End of "$Id: Fl_Return_Button.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Roller.cxx b/src/Fl_Roller.cxx
index ebeb9ec4700cce6c1d1448995ef61045d5ac5d9c..4f598eb58dec704f2aa9f1206c8b6ac0660b5a77 100644
--- a/src/Fl_Roller.cxx
+++ b/src/Fl_Roller.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Roller.cxx,v 1.6.2.3 2000/06/05 21:20:56 mike Exp $"
+// "$Id: Fl_Roller.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Roller widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -137,5 +137,5 @@ Fl_Roller::Fl_Roller(int X,int Y,int W,int H,const char* L)
 }
 
 //
-// End of "$Id: Fl_Roller.cxx,v 1.6.2.3 2000/06/05 21:20:56 mike Exp $".
+// End of "$Id: Fl_Roller.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Round_Button.cxx b/src/Fl_Round_Button.cxx
index 8a5bbf6aed0b678a136b6bd9127744b0230a276e..662ebc7c0d481658a362c13bf2b108ef07c4388d 100644
--- a/src/Fl_Round_Button.cxx
+++ b/src/Fl_Round_Button.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Round_Button.cxx,v 1.4.2.2 2000/06/05 21:20:56 mike Exp $"
+// "$Id: Fl_Round_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Round button for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -38,5 +38,5 @@ Fl_Round_Button::Fl_Round_Button(int x,int y,int w,int h, const char *l)
 }
 
 //
-// End of "$Id: Fl_Round_Button.cxx,v 1.4.2.2 2000/06/05 21:20:56 mike Exp $".
+// End of "$Id: Fl_Round_Button.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Scroll.cxx b/src/Fl_Scroll.cxx
index 7db14545a1f61acc185596d43d981f28fc7994d4..f60329d64b925b9207f3cc265069e3e66028babf 100644
--- a/src/Fl_Scroll.cxx
+++ b/src/Fl_Scroll.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Scroll.cxx,v 1.7.2.5 2000/11/20 15:30:54 easysw Exp $"
+// "$Id: Fl_Scroll.cxx,v 1.7.2.6 2001/01/22 15:13:40 easysw Exp $"
 //
 // Scroll widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -249,5 +249,5 @@ int Fl_Scroll::handle(int event) {
 }
 
 //
-// End of "$Id: Fl_Scroll.cxx,v 1.7.2.5 2000/11/20 15:30:54 easysw Exp $".
+// End of "$Id: Fl_Scroll.cxx,v 1.7.2.6 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Scrollbar.cxx b/src/Fl_Scrollbar.cxx
index 50e198b8d2352caf0ff472d134eedf64ab789488..a5c49aa60fd10cb735a55ac58a5df5214d07284f 100644
--- a/src/Fl_Scrollbar.cxx
+++ b/src/Fl_Scrollbar.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Scrollbar.cxx,v 1.7.2.11 2000/06/05 21:20:57 mike Exp $"
+// "$Id: Fl_Scrollbar.cxx,v 1.7.2.12 2001/01/22 15:13:40 easysw Exp $"
 //
 // Scroll bar widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -234,5 +234,5 @@ Fl_Scrollbar::Fl_Scrollbar(int X, int Y, int W, int H, const char* L)
 }
 
 //
-// End of "$Id: Fl_Scrollbar.cxx,v 1.7.2.11 2000/06/05 21:20:57 mike Exp $".
+// End of "$Id: Fl_Scrollbar.cxx,v 1.7.2.12 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Single_Window.cxx b/src/Fl_Single_Window.cxx
index 72457fc412b5e66e7d56e3181e319be224832549..008c98a04fa8a7660accac945e8ed69ab6836f3c 100644
--- a/src/Fl_Single_Window.cxx
+++ b/src/Fl_Single_Window.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Single_Window.cxx,v 1.4.2.2 2000/06/05 21:20:57 mike Exp $"
+// "$Id: Fl_Single_Window.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Single-buffered window for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -35,5 +35,5 @@ void Fl_Single_Window::show() {Fl_Window::show();}
 void Fl_Single_Window::flush() {Fl_Window::flush();}
 
 //
-// End of "$Id: Fl_Single_Window.cxx,v 1.4.2.2 2000/06/05 21:20:57 mike Exp $".
+// End of "$Id: Fl_Single_Window.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Slider.cxx b/src/Fl_Slider.cxx
index a58d458eb8387f7a6de12f3ae241fc10c2ca61f8..9bae98a65bb7991774480b52d1c49180d5cdaf24 100644
--- a/src/Fl_Slider.cxx
+++ b/src/Fl_Slider.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Slider.cxx,v 1.8.2.9 2000/06/15 05:37:39 bill Exp $"
+// "$Id: Fl_Slider.cxx,v 1.8.2.10 2001/01/22 15:13:40 easysw Exp $"
 //
 // Slider widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -255,5 +255,5 @@ int Fl_Slider::handle(int event) {
 }
 
 //
-// End of "$Id: Fl_Slider.cxx,v 1.8.2.9 2000/06/15 05:37:39 bill Exp $".
+// End of "$Id: Fl_Slider.cxx,v 1.8.2.10 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Tabs.cxx b/src/Fl_Tabs.cxx
index d04bc87e2b4ed4f3e9a1191e30512ddbae5129fe..e405832d10821326e03c084dfb64526e742fda17 100644
--- a/src/Fl_Tabs.cxx
+++ b/src/Fl_Tabs.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Tabs.cxx,v 1.6.2.9 2000/10/17 06:53:20 spitzak Exp $"
+// "$Id: Fl_Tabs.cxx,v 1.6.2.10 2001/01/22 15:13:40 easysw Exp $"
 //
 // Tab widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -275,5 +275,5 @@ Fl_Tabs::Fl_Tabs(int X,int Y,int W, int H, const char *l) :
 }
 
 //
-// End of "$Id: Fl_Tabs.cxx,v 1.6.2.9 2000/10/17 06:53:20 spitzak Exp $".
+// End of "$Id: Fl_Tabs.cxx,v 1.6.2.10 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Tile.cxx b/src/Fl_Tile.cxx
index af2e15ed326b7d752cdbec0e8277553fad80d56e..65ea6e4375005b64362e754c1f2c0b76913178b3 100644
--- a/src/Fl_Tile.cxx
+++ b/src/Fl_Tile.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Tile.cxx,v 1.5.2.4 2000/06/05 21:20:58 mike Exp $"
+// "$Id: Fl_Tile.cxx,v 1.5.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // Tile widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -196,5 +196,5 @@ int Fl_Tile::handle(int event) {
 }
 
 //
-// End of "$Id: Fl_Tile.cxx,v 1.5.2.4 2000/06/05 21:20:58 mike Exp $".
+// End of "$Id: Fl_Tile.cxx,v 1.5.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Valuator.cxx b/src/Fl_Valuator.cxx
index eaea57c2ae9c0cf389bcced9509a4b54b4533df1..459c3b6c86dc957a4c6e6770a6b48d44275c48ee 100644
--- a/src/Fl_Valuator.cxx
+++ b/src/Fl_Valuator.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Valuator.cxx,v 1.5.2.3 2001/01/21 06:00:59 spitzak Exp $"
+// "$Id: Fl_Valuator.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Valuator widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -123,5 +123,5 @@ int Fl_Valuator::format(char* buffer) {
 }
 
 //
-// End of "$Id: Fl_Valuator.cxx,v 1.5.2.3 2001/01/21 06:00:59 spitzak Exp $".
+// End of "$Id: Fl_Valuator.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Value_Input.cxx b/src/Fl_Value_Input.cxx
index 49d98e8bdf0ecb5cb239db3b247dd362bd8ef4bd..6371649e6b8ddc2d9a8b5d8ddfbc7458311d2e24 100644
--- a/src/Fl_Value_Input.cxx
+++ b/src/Fl_Value_Input.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Value_Input.cxx,v 1.6.2.4 2000/06/05 21:20:58 mike Exp $"
+// "$Id: Fl_Value_Input.cxx,v 1.6.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // Value input widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -128,5 +128,5 @@ Fl_Value_Input::Fl_Value_Input(int x, int y, int w, int h, const char* l)
 }
 
 //
-// End of "$Id: Fl_Value_Input.cxx,v 1.6.2.4 2000/06/05 21:20:58 mike Exp $".
+// End of "$Id: Fl_Value_Input.cxx,v 1.6.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Value_Output.cxx b/src/Fl_Value_Output.cxx
index bfd8c384d222f1eee33ec574d7739a4524e435fb..5d4b64a6a45aafba31533156baec108b83b283a3 100644
--- a/src/Fl_Value_Output.cxx
+++ b/src/Fl_Value_Output.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Value_Output.cxx,v 1.6.2.2 2000/06/05 21:20:58 mike Exp $"
+// "$Id: Fl_Value_Output.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Value output widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -94,5 +94,5 @@ Fl_Value_Output::Fl_Value_Output(int x,int y,int w,int h,const char *l)
 }
 
 //
-// End of "$Id: Fl_Value_Output.cxx,v 1.6.2.2 2000/06/05 21:20:58 mike Exp $".
+// End of "$Id: Fl_Value_Output.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Value_Slider.cxx b/src/Fl_Value_Slider.cxx
index 523d4ee414a9924450c2fdc998afe883e535eec3..9185f7ed65524d7dd164104508112e6baa309ab5 100644
--- a/src/Fl_Value_Slider.cxx
+++ b/src/Fl_Value_Slider.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Value_Slider.cxx,v 1.5.2.3 2000/06/05 21:20:58 mike Exp $"
+// "$Id: Fl_Value_Slider.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Value slider widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -72,5 +72,5 @@ int Fl_Value_Slider::handle(int event) {
 }
 
 //
-// End of "$Id: Fl_Value_Slider.cxx,v 1.5.2.3 2000/06/05 21:20:58 mike Exp $".
+// End of "$Id: Fl_Value_Slider.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Widget.cxx b/src/Fl_Widget.cxx
index 57b19c61309e77f8231386ef6cbd6d629f55f009..1ba161afdd9a64a7fa3d672de621f4b3d5def34d 100644
--- a/src/Fl_Widget.cxx
+++ b/src/Fl_Widget.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Widget.cxx,v 1.5.2.3 2000/06/05 21:20:58 mike Exp $"
+// "$Id: Fl_Widget.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Base widget class for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -198,5 +198,5 @@ int Fl_Widget::contains(const Fl_Widget *o) const {
 }
 
 //
-// End of "$Id: Fl_Widget.cxx,v 1.5.2.3 2000/06/05 21:20:58 mike Exp $".
+// End of "$Id: Fl_Widget.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Window.cxx b/src/Fl_Window.cxx
index 0422e62a6517173a255eb2337c546c4885ab9654..97e2feb1288e426e0375b98d0cc50b81c74f525f 100644
--- a/src/Fl_Window.cxx
+++ b/src/Fl_Window.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Window.cxx,v 1.6.2.2 2000/06/05 21:20:59 mike Exp $"
+// "$Id: Fl_Window.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Window widget class for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -102,5 +102,5 @@ void Fl_Window::default_callback(Fl_Window* window, void* v) {
 }
 
 //
-// End of "$Id: Fl_Window.cxx,v 1.6.2.2 2000/06/05 21:20:59 mike Exp $".
+// End of "$Id: Fl_Window.cxx,v 1.6.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Window_fullscreen.cxx b/src/Fl_Window_fullscreen.cxx
index b04efc7ffbd522d5ebb1f9249ff9a39c6d6170b2..5872078a1abc60c0141424d3802b0b171fcb86b5 100644
--- a/src/Fl_Window_fullscreen.cxx
+++ b/src/Fl_Window_fullscreen.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.2 2000/06/05 21:20:59 mike Exp $"
+// "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Fullscreen window support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -71,5 +71,5 @@ void Fl_Window::fullscreen_off(int X,int Y,int W,int H) {
 }
 
 //
-// End of "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.2 2000/06/05 21:20:59 mike Exp $".
+// End of "$Id: Fl_Window_fullscreen.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Window_hotspot.cxx b/src/Fl_Window_hotspot.cxx
index ebc28608a41382ca0eb002c2354811bd35f553b5..176985a86608a0afeea6a751d5767c43ccdbf127 100644
--- a/src/Fl_Window_hotspot.cxx
+++ b/src/Fl_Window_hotspot.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Window_hotspot.cxx,v 1.7.2.2 2000/06/05 21:20:59 mike Exp $"
+// "$Id: Fl_Window_hotspot.cxx,v 1.7.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Common hotspot routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -77,5 +77,5 @@ void Fl_Window::hotspot(const Fl_Widget *o, int offscreen) {
 }
 
 //
-// End of "$Id: Fl_Window_hotspot.cxx,v 1.7.2.2 2000/06/05 21:20:59 mike Exp $".
+// End of "$Id: Fl_Window_hotspot.cxx,v 1.7.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_Window_iconize.cxx b/src/Fl_Window_iconize.cxx
index 110cb0a6a93d489f4bcda4e5a8cc5ab32034dfd8..7c33294df14a6ef1c0b71428851655782aaf9733 100644
--- a/src/Fl_Window_iconize.cxx
+++ b/src/Fl_Window_iconize.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_Window_iconize.cxx,v 1.5.2.2 2000/06/05 21:20:59 mike Exp $"
+// "$Id: Fl_Window_iconize.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Window minification code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -41,5 +41,5 @@ void Fl_Window::iconize() {
 }
 
 //
-// End of "$Id: Fl_Window_iconize.cxx,v 1.5.2.2 2000/06/05 21:20:59 mike Exp $".
+// End of "$Id: Fl_Window_iconize.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_XColor.H b/src/Fl_XColor.H
index 8e2c1bbf3d27aae1dc35e852e2c63caadc2c7a41..326df990f0730f9b75a50deb6c7dfb30066e64b6 100644
--- a/src/Fl_XColor.H
+++ b/src/Fl_XColor.H
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_XColor.H,v 1.6.2.3 2000/07/07 08:38:58 spitzak Exp $"
+// "$Id: Fl_XColor.H,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // X-specific color definitions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -40,5 +40,5 @@ extern unsigned char fl_redmask, fl_greenmask, fl_bluemask;
 extern int fl_redshift, fl_greenshift, fl_blueshift, fl_extrashift;
 
 //
-// End of "$Id: Fl_XColor.H,v 1.6.2.3 2000/07/07 08:38:58 spitzak Exp $".
+// End of "$Id: Fl_XColor.H,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_abort.cxx b/src/Fl_abort.cxx
index 180f8303f65a5abb401c11e9b4195b9398e3612d..8e0a4f11297817f04426112d565bf672fe9526ff 100644
--- a/src/Fl_abort.cxx
+++ b/src/Fl_abort.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_abort.cxx,v 1.8.2.2 2000/06/05 21:21:00 mike Exp $"
+// "$Id: Fl_abort.cxx,v 1.8.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Warning/error message code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -89,5 +89,5 @@ void (*Fl::error)(const char* format, ...) = ::error;
 void (*Fl::fatal)(const char* format, ...) = ::error;
 
 //
-// End of "$Id: Fl_abort.cxx,v 1.8.2.2 2000/06/05 21:21:00 mike Exp $".
+// End of "$Id: Fl_abort.cxx,v 1.8.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_add_idle.cxx b/src/Fl_add_idle.cxx
index caf6a8649452efe243346d1f42ce82fd1ea5c359..88e233bb6dd61a8133d752d5723a5bb4ce89460d 100644
--- a/src/Fl_add_idle.cxx
+++ b/src/Fl_add_idle.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_add_idle.cxx,v 1.4.2.5 2000/09/05 17:15:48 spitzak Exp $"
+// "$Id: Fl_add_idle.cxx,v 1.4.2.6 2001/01/22 15:13:40 easysw Exp $"
 //
 // Idle routine support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -91,5 +91,5 @@ void Fl::remove_idle(void (*cb)(void*), void* data) {
 }
 
 //
-// End of "$Id: Fl_add_idle.cxx,v 1.4.2.5 2000/09/05 17:15:48 spitzak Exp $".
+// End of "$Id: Fl_add_idle.cxx,v 1.4.2.6 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_arg.cxx b/src/Fl_arg.cxx
index 0359623b70aa10ba47a72ceeaedfb7066266a305..830cd3e6801d79ad9559507af49fdfb603e61ebf 100644
--- a/src/Fl_arg.cxx
+++ b/src/Fl_arg.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_arg.cxx,v 1.5.2.6 2000/11/20 19:02:20 easysw Exp $"
+// "$Id: Fl_arg.cxx,v 1.5.2.7 2001/01/22 15:13:40 easysw Exp $"
 //
 // Optional argument initialization code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -352,5 +352,5 @@ int XParseGeometry(const char* string, int* x, int* y,
 #endif // ifdef WIN32
 
 //
-// End of "$Id: Fl_arg.cxx,v 1.5.2.6 2000/11/20 19:02:20 easysw Exp $".
+// End of "$Id: Fl_arg.cxx,v 1.5.2.7 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_compose.cxx b/src/Fl_compose.cxx
index 53b51b4958d0f701ba8425631a682d5e5ed6d1cc..8fa620be539817555424378726bd461bf187b504 100644
--- a/src/Fl_compose.cxx
+++ b/src/Fl_compose.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_compose.cxx,v 1.1.2.5 2000/12/06 15:45:13 easysw Exp $"
+// "$Id: Fl_compose.cxx,v 1.1.2.6 2001/01/22 15:13:40 easysw Exp $"
 //
 // Character compose processing for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
diff --git a/src/Fl_cutpaste.cxx b/src/Fl_cutpaste.cxx
index 18665e49f99270770b62c7eda8239c1ad3ee5734..55ab483babaab8d72419a322ea296ac7e94f6768 100644
--- a/src/Fl_cutpaste.cxx
+++ b/src/Fl_cutpaste.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_cutpaste.cxx,v 1.6.2.3 2000/07/13 08:51:22 spitzak Exp $"
+// "$Id: Fl_cutpaste.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Cut/paste code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -158,5 +158,5 @@ void Fl::selection(Fl_Widget &owner, const char *stuff, int len) {
 #endif
 
 //
-// End of "$Id: Fl_cutpaste.cxx,v 1.6.2.3 2000/07/13 08:51:22 spitzak Exp $".
+// End of "$Id: Fl_cutpaste.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_cutpaste_win32.cxx b/src/Fl_cutpaste_win32.cxx
index 066f142cae1c2cebe883f66763901fe86c59e0d1..bf35031bbea77e434a1f1e5685a0784a7af33415 100644
--- a/src/Fl_cutpaste_win32.cxx
+++ b/src/Fl_cutpaste_win32.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.7 2000/06/05 21:21:01 mike Exp $"
+// "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.8 2001/01/22 15:13:40 easysw Exp $"
 //
 // WIN32 cut/paste for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -135,5 +135,5 @@ void Fl::paste(Fl_Widget &receiver) {
 }
 
 //
-// End of "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.7 2000/06/05 21:21:01 mike Exp $".
+// End of "$Id: Fl_cutpaste_win32.cxx,v 1.5.2.8 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_display.cxx b/src/Fl_display.cxx
index 45513de315a66de4ee8601cf13ff9f47c6e45e2a..da14e908211c6c76639481734c4a6736c90ced45 100644
--- a/src/Fl_display.cxx
+++ b/src/Fl_display.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_display.cxx,v 1.4.2.2 2000/06/05 21:21:01 mike Exp $"
+// "$Id: Fl_display.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Display function for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -39,5 +39,5 @@ void Fl::display(const char *d) {
 }
 
 //
-// End of "$Id: Fl_display.cxx,v 1.4.2.2 2000/06/05 21:21:01 mike Exp $".
+// End of "$Id: Fl_display.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_get_key.cxx b/src/Fl_get_key.cxx
index fa397e030dd81cfba5b5153e19f5e4d8676b881f..2fb0dd45dab7985a7b0ef795244e05d5f91717f8 100644
--- a/src/Fl_get_key.cxx
+++ b/src/Fl_get_key.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_get_key.cxx,v 1.5.2.2 2000/06/05 21:21:01 mike Exp $"
+// "$Id: Fl_get_key.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Keyboard state routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -60,5 +60,5 @@ int Fl::get_key(int k) {
 #endif
 
 //
-// End of "$Id: Fl_get_key.cxx,v 1.5.2.2 2000/06/05 21:21:01 mike Exp $".
+// End of "$Id: Fl_get_key.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_get_key_win32.cxx b/src/Fl_get_key_win32.cxx
index a0214b415bb585a471b69204c6ba67e8a577f0eb..ec8d9fd51838fa0b4d0d6d82bc43a10203d83aa2 100755
--- a/src/Fl_get_key_win32.cxx
+++ b/src/Fl_get_key_win32.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_get_key_win32.cxx,v 1.4.2.4 2000/06/05 21:21:01 mike Exp $"
+// "$Id: Fl_get_key_win32.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // WIN32 keyboard state routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -132,5 +132,5 @@ int Fl::get_key(int k) {
 }
 
 //
-// End of "$Id: Fl_get_key_win32.cxx,v 1.4.2.4 2000/06/05 21:21:01 mike Exp $".
+// End of "$Id: Fl_get_key_win32.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_get_system_colors.cxx b/src/Fl_get_system_colors.cxx
index 774f6e6cd757f5fb92e6000acf0bbed7e1e92252..ae4caf0123121f57720238fe73d9969341c5504a 100644
--- a/src/Fl_get_system_colors.cxx
+++ b/src/Fl_get_system_colors.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_get_system_colors.cxx,v 1.6.2.5 2000/09/19 07:53:55 spitzak Exp $"
+// "$Id: Fl_get_system_colors.cxx,v 1.6.2.6 2001/01/22 15:13:40 easysw Exp $"
 //
 // System color support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -146,5 +146,5 @@ void Fl::get_system_colors()
 #endif
 
 //
-// End of "$Id: Fl_get_system_colors.cxx,v 1.6.2.5 2000/09/19 07:53:55 spitzak Exp $".
+// End of "$Id: Fl_get_system_colors.cxx,v 1.6.2.6 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_grab.cxx b/src/Fl_grab.cxx
index 4fa5efa0a70c9af7425459ebb52ee85258f626af..b96b0f9dfdcd5aecf61cb26a76be3df02c9f333f 100644
--- a/src/Fl_grab.cxx
+++ b/src/Fl_grab.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_grab.cxx,v 1.1.2.3 2000/06/05 21:21:01 mike Exp $"
+// "$Id: Fl_grab.cxx,v 1.1.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Grab/release code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -89,5 +89,5 @@ void Fl::grab(Fl_Window* w) {
 }
 
 //
-// End of "$Id: Fl_grab.cxx,v 1.1.2.3 2000/06/05 21:21:01 mike Exp $".
+// End of "$Id: Fl_grab.cxx,v 1.1.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_own_colormap.cxx b/src/Fl_own_colormap.cxx
index 8da29dd9fe31dfa1c7d9bf468538819162c0fe8a..e13396dd525fc649091aabf90ccef86f07c840f2 100644
--- a/src/Fl_own_colormap.cxx
+++ b/src/Fl_own_colormap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_own_colormap.cxx,v 1.4.2.2 2000/06/05 21:21:01 mike Exp $"
+// "$Id: Fl_own_colormap.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Private colormap support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -73,5 +73,5 @@ void Fl::own_colormap() {
 #endif
 
 //
-// End of "$Id: Fl_own_colormap.cxx,v 1.4.2.2 2000/06/05 21:21:01 mike Exp $".
+// End of "$Id: Fl_own_colormap.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_visual.cxx b/src/Fl_visual.cxx
index 4d7b1689708735dcb502cdc03d72e06e66879422..ea8b1c8ed91661d8d7b23805d484054bffa48a0b 100644
--- a/src/Fl_visual.cxx
+++ b/src/Fl_visual.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_visual.cxx,v 1.7.2.3 2000/06/05 21:21:02 mike Exp $"
+// "$Id: Fl_visual.cxx,v 1.7.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Visual support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -107,5 +107,5 @@ int Fl::visual(int flags) {
 #endif
 
 //
-// End of "$Id: Fl_visual.cxx,v 1.7.2.3 2000/06/05 21:21:02 mike Exp $".
+// End of "$Id: Fl_visual.cxx,v 1.7.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx
index 1ab44d4822cb1f50a5b943a8cb0c72b8e5260604..dbb269fd3a1c4ede28bb11b22fd8036acc0b4694 100644
--- a/src/Fl_win32.cxx
+++ b/src/Fl_win32.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_win32.cxx,v 1.33.2.30 2000/11/20 14:17:43 easysw Exp $"
+// "$Id: Fl_win32.cxx,v 1.33.2.31 2001/01/22 15:13:40 easysw Exp $"
 //
 // WIN32-specific code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -951,5 +951,5 @@ void Fl_Window::make_current() {
 }
 
 //
-// End of "$Id: Fl_win32.cxx,v 1.33.2.30 2000/11/20 14:17:43 easysw Exp $".
+// End of "$Id: Fl_win32.cxx,v 1.33.2.31 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Fl_x.cxx b/src/Fl_x.cxx
index b675ea10253a5d1cf51b819c9dab893a453aad1a..2b83932dbb2573a57beeababd415f3e6e145205c 100644
--- a/src/Fl_x.cxx
+++ b/src/Fl_x.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: Fl_x.cxx,v 1.24.2.22 2000/11/20 19:02:20 easysw Exp $"
+// "$Id: Fl_x.cxx,v 1.24.2.23 2001/01/22 15:13:40 easysw Exp $"
 //
 // X specific code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -903,5 +903,5 @@ void Fl_Window::make_current() {
 #endif
 
 //
-// End of "$Id: Fl_x.cxx,v 1.24.2.22 2000/11/20 19:02:20 easysw Exp $".
+// End of "$Id: Fl_x.cxx,v 1.24.2.23 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/Makefile b/src/Makefile
index c219336b9d686988603a71622f8ea15528746b97..f667b8430fe82958c77cadb0c79723d3f65d3d6e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile,v 1.18.2.13 2000/06/05 21:21:03 mike Exp $"
+# "$Id: Makefile,v 1.18.2.14 2001/01/22 15:13:40 easysw Exp $"
 #
 # Library makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -207,5 +207,5 @@ install: $(LIBRARY) $(DSONAME)
 	ln -s FL $(includedir)/Fl
 
 #
-# End of "$Id: Makefile,v 1.18.2.13 2000/06/05 21:21:03 mike Exp $".
+# End of "$Id: Makefile,v 1.18.2.14 2001/01/22 15:13:40 easysw Exp $".
 #
diff --git a/src/cmap.cxx b/src/cmap.cxx
index c3f2b8e0a11989ff5d4e0204ef585abe7ac83f55..9383e204ad77d6a6d2d31b82a060ee0e5bd41bdb 100644
--- a/src/cmap.cxx
+++ b/src/cmap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: cmap.cxx,v 1.4.2.4 2000/10/17 07:23:42 spitzak Exp $"
+// "$Id: cmap.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // Colormap generation program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -171,5 +171,5 @@ int main() {
 }
 
 //
-// End of "$Id: cmap.cxx,v 1.4.2.4 2000/10/17 07:23:42 spitzak Exp $".
+// End of "$Id: cmap.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/filename_absolute.cxx b/src/filename_absolute.cxx
index 43ce874e9ecd09b5892b233bed2a8b506e8c8dac..f96b8d8c98311953b39615df865d9c8048a650d0 100644
--- a/src/filename_absolute.cxx
+++ b/src/filename_absolute.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: filename_absolute.cxx,v 1.5.2.3 2000/06/05 21:21:04 mike Exp $"
+// "$Id: filename_absolute.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Filename expansion routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -92,5 +92,5 @@ int filename_absolute(char *to,const char *from) {
 }
 
 //
-// End of "$Id: filename_absolute.cxx,v 1.5.2.3 2000/06/05 21:21:04 mike Exp $".
+// End of "$Id: filename_absolute.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/filename_expand.cxx b/src/filename_expand.cxx
index e507d80ef914e66e986529e85085bc0459a25f78..146c0d74235d313ced9252f1ed6a63dfdd1e1724 100644
--- a/src/filename_expand.cxx
+++ b/src/filename_expand.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: filename_expand.cxx,v 1.4.2.3 2000/06/05 21:21:04 mike Exp $"
+// "$Id: filename_expand.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Filename expansion routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -97,5 +97,5 @@ int filename_expand(char *to,const char *from) {
 }
 
 //
-// End of "$Id: filename_expand.cxx,v 1.4.2.3 2000/06/05 21:21:04 mike Exp $".
+// End of "$Id: filename_expand.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/filename_ext.cxx b/src/filename_ext.cxx
index 08e021056b32b2ad2b9715ce64b960708f74207e..8442f63a6e9255be6012edc9ea3e15b78fb0047b 100644
--- a/src/filename_ext.cxx
+++ b/src/filename_ext.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: filename_ext.cxx,v 1.4.2.3 2000/06/05 21:21:04 mike Exp $"
+// "$Id: filename_ext.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Filename extension routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -41,5 +41,5 @@ const char *filename_ext(const char *buf) {
 }
 
 //
-// End of "$Id: filename_ext.cxx,v 1.4.2.3 2000/06/05 21:21:04 mike Exp $".
+// End of "$Id: filename_ext.cxx,v 1.4.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/filename_isdir.cxx b/src/filename_isdir.cxx
index 3c3b80bcdc7750786600b677185f17c367d441a7..1d4d4cb0545bc393b347171b62f367c8d2589ed1 100644
--- a/src/filename_isdir.cxx
+++ b/src/filename_isdir.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: filename_isdir.cxx,v 1.4.2.4 2000/06/08 08:12:38 bill Exp $"
+// "$Id: filename_isdir.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // Directory detection routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -48,5 +48,5 @@ int filename_isdir(const char* n) {
 }
 
 //
-// End of "$Id: filename_isdir.cxx,v 1.4.2.4 2000/06/08 08:12:38 bill Exp $".
+// End of "$Id: filename_isdir.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/filename_list.cxx b/src/filename_list.cxx
index f28f85742506e8d2c7fa12ad9dee784efdd4d122..9c636f4afc5f24763272fb158e39870042a11e18 100644
--- a/src/filename_list.cxx
+++ b/src/filename_list.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: filename_list.cxx,v 1.10.2.8 2000/06/05 21:21:04 mike Exp $"
+// "$Id: filename_list.cxx,v 1.10.2.9 2001/01/22 15:13:40 easysw Exp $"
 //
 // Filename list routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -59,5 +59,5 @@ int filename_list(const char *d, dirent ***list) {
 }
 
 //
-// End of "$Id: filename_list.cxx,v 1.10.2.8 2000/06/05 21:21:04 mike Exp $".
+// End of "$Id: filename_list.cxx,v 1.10.2.9 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/filename_match.cxx b/src/filename_match.cxx
index bc34035bf165ed59a8a08f13c5a8fa7234b9a05f..a9e6d57a2f0beab4aecca49a6ff6f3468203b42e 100644
--- a/src/filename_match.cxx
+++ b/src/filename_match.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: filename_match.cxx,v 1.5.2.3 2000/06/05 21:21:05 mike Exp $"
+// "$Id: filename_match.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Pattern matching routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -109,5 +109,5 @@ int filename_match(const char *s, const char *p) {
 }
 
 //
-// End of "$Id: filename_match.cxx,v 1.5.2.3 2000/06/05 21:21:05 mike Exp $".
+// End of "$Id: filename_match.cxx,v 1.5.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/filename_setext.cxx b/src/filename_setext.cxx
index 4ba460e486a1bb84843c3cea3048d31eda2b0773..f82ddda68bab22e2a3090af429b543e13fd3a82d 100644
--- a/src/filename_setext.cxx
+++ b/src/filename_setext.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: filename_setext.cxx,v 1.4.2.2 2000/06/05 21:21:05 mike Exp $"
+// "$Id: filename_setext.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Filename extension routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -37,5 +37,5 @@ char *filename_setext(char *buf, const char *ext) {
 }
 
 //
-// End of "$Id: filename_setext.cxx,v 1.4.2.2 2000/06/05 21:21:05 mike Exp $".
+// End of "$Id: filename_setext.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_arc.cxx b/src/fl_arc.cxx
index 8021c806769829cfaa648307d0bae03efcc2f08d..56a2b51d2662329a8f4440d19f0559ddae12aa95 100644
--- a/src/fl_arc.cxx
+++ b/src/fl_arc.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_arc.cxx,v 1.4.2.2 2000/06/05 21:21:05 mike Exp $"
+// "$Id: fl_arc.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Arc functions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -73,5 +73,5 @@ void fl_circle(double x,double y,double r) {
 #endif
 
 //
-// End of "$Id: fl_arc.cxx,v 1.4.2.2 2000/06/05 21:21:05 mike Exp $".
+// End of "$Id: fl_arc.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_arci.cxx b/src/fl_arci.cxx
index 4ff22d955772e7c19e24341343c3b2d710c6253b..b5a6576fef42936100b6a592de4b9072873c00df 100644
--- a/src/fl_arci.cxx
+++ b/src/fl_arci.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_arci.cxx,v 1.4.2.4 2000/06/05 21:21:05 mike Exp $"
+// "$Id: fl_arci.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // Arc (integer) drawing functions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -68,5 +68,5 @@ void fl_pie(int x,int y,int w,int h,double a1,double a2) {
 }
 
 //
-// End of "$Id: fl_arci.cxx,v 1.4.2.4 2000/06/05 21:21:05 mike Exp $".
+// End of "$Id: fl_arci.cxx,v 1.4.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx
index 8db0f81af9dd5b37392796addc33d76f0319abbb..0676fec625721e675702136c88ca2710c0a92e35 100644
--- a/src/fl_ask.cxx
+++ b/src/fl_ask.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_ask.cxx,v 1.8.2.7 2000/08/20 04:35:16 spitzak Exp $"
+// "$Id: fl_ask.cxx,v 1.8.2.8 2001/01/22 15:13:40 easysw Exp $"
 //
 // Standard dialog functions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -230,5 +230,5 @@ const char *fl_password(const char *fmt, const char *defstr, ...) {
 }
 
 //
-// End of "$Id: fl_ask.cxx,v 1.8.2.7 2000/08/20 04:35:16 spitzak Exp $".
+// End of "$Id: fl_ask.cxx,v 1.8.2.8 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_boxtype.cxx b/src/fl_boxtype.cxx
index c8ac28c5190fe13183e933c4ceae05bd02e67f69..c6be29d95a492dd4d9880366e1a3e2704d6d8374 100644
--- a/src/fl_boxtype.cxx
+++ b/src/fl_boxtype.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_boxtype.cxx,v 1.8.2.3 2000/06/05 21:21:05 mike Exp $"
+// "$Id: fl_boxtype.cxx,v 1.8.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Box drawing code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -282,5 +282,5 @@ const {
 }
 
 //
-// End of "$Id: fl_boxtype.cxx,v 1.8.2.3 2000/06/05 21:21:05 mike Exp $".
+// End of "$Id: fl_boxtype.cxx,v 1.8.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_call_main.c b/src/fl_call_main.c
index fa6bf32139605aa7b949ed41e2eca30ea769d0c3..c11ad4515f4434dd5c758ef26bbfe632f9b36d1b 100644
--- a/src/fl_call_main.c
+++ b/src/fl_call_main.c
@@ -1,7 +1,7 @@
 /*
- * "$Id: fl_call_main.c,v 1.1.2.7 2000/06/05 21:21:06 mike Exp $"
+ * "$Id: fl_call_main.c,v 1.1.2.8 2001/01/22 15:13:40 easysw Exp $"
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * fl_call_main() calls main() for you Windows people.  Needs to be done in C
  * because Borland C++ won't let you call main() from C++.
@@ -83,6 +83,6 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
 #endif
 
 /*
- * End of "$Id: fl_call_main.c,v 1.1.2.7 2000/06/05 21:21:06 mike Exp $".
+ * End of "$Id: fl_call_main.c,v 1.1.2.8 2001/01/22 15:13:40 easysw Exp $".
  */
 
diff --git a/src/fl_color.cxx b/src/fl_color.cxx
index 6398f9a4ff74cc52467d57556e7a645ebb1dcaa8..8f9fddba4795c850e0dfa489b327c45b994c7ee9 100644
--- a/src/fl_color.cxx
+++ b/src/fl_color.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_color.cxx,v 1.12.2.4 2000/07/07 08:38:58 spitzak Exp $"
+// "$Id: fl_color.cxx,v 1.12.2.5 2001/01/22 15:13:40 easysw Exp $"
 //
 // Color functions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -355,5 +355,5 @@ Fl_Color contrast(Fl_Color fg, Fl_Color bg) {
 }
 
 //
-// End of "$Id: fl_color.cxx,v 1.12.2.4 2000/07/07 08:38:58 spitzak Exp $".
+// End of "$Id: fl_color.cxx,v 1.12.2.5 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_color_win32.cxx b/src/fl_color_win32.cxx
index fe26cc109003b4ecd3b427743213302e3bfa5f09..7156b4ac4f32e52cee76700b8cd0686fa49acb74 100644
--- a/src/fl_color_win32.cxx
+++ b/src/fl_color_win32.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_color_win32.cxx,v 1.14.2.2 2000/06/05 21:21:06 mike Exp $"
+// "$Id: fl_color_win32.cxx,v 1.14.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // WIN32 color functions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -206,5 +206,5 @@ fl_select_palette(void)
 #endif
 
 //
-// End of "$Id: fl_color_win32.cxx,v 1.14.2.2 2000/06/05 21:21:06 mike Exp $".
+// End of "$Id: fl_color_win32.cxx,v 1.14.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_cursor.cxx b/src/fl_cursor.cxx
index ee72e61d9b4d4ed673d6e29668ed4cda082753d8..aa7249e259fe0738218a907b26de5be0f98f5bc2 100644
--- a/src/fl_cursor.cxx
+++ b/src/fl_cursor.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_cursor.cxx,v 1.6.2.5 2000/06/05 21:21:06 mike Exp $"
+// "$Id: fl_cursor.cxx,v 1.6.2.6 2001/01/22 15:13:40 easysw Exp $"
 //
 // Mouse cursor support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -184,5 +184,5 @@ void Fl_Window::cursor(Fl_Cursor c, Fl_Color fg, Fl_Color bg) {
 #endif
 
 //
-// End of "$Id: fl_cursor.cxx,v 1.6.2.5 2000/06/05 21:21:06 mike Exp $".
+// End of "$Id: fl_cursor.cxx,v 1.6.2.6 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_curve.cxx b/src/fl_curve.cxx
index bd294a01c1d05af47a1cdc5d501cb86a7b4ff9a5..6cb3ecd067b85ed6e13b39a26fbe9b7f899a5fbf 100644
--- a/src/fl_curve.cxx
+++ b/src/fl_curve.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_curve.cxx,v 1.4.2.2 2000/06/05 21:21:06 mike Exp $"
+// "$Id: fl_curve.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Bezier curve functions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -95,5 +95,5 @@ void fl_curve(double X0, double Y0,
 }
 
 //
-// End of "$Id: fl_curve.cxx,v 1.4.2.2 2000/06/05 21:21:06 mike Exp $".
+// End of "$Id: fl_curve.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_diamond_box.cxx b/src/fl_diamond_box.cxx
index 81a014996316e4174e9f225e0e4f63294d204742..526cde7e773cf466014c2ba25f19c262c317a6c5 100644
--- a/src/fl_diamond_box.cxx
+++ b/src/fl_diamond_box.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_diamond_box.cxx,v 1.5.2.2 2000/06/05 21:21:07 mike Exp $"
+// "$Id: fl_diamond_box.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // Diamond box code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -74,5 +74,5 @@ Fl_Boxtype define_FL_DIAMOND_BOX() {
 }
 
 //
-// End of "$Id: fl_diamond_box.cxx,v 1.5.2.2 2000/06/05 21:21:07 mike Exp $".
+// End of "$Id: fl_diamond_box.cxx,v 1.5.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_draw.cxx b/src/fl_draw.cxx
index caf0776dbca75db70070f3e3d40d76a61e3bb3b3..97857d6c1d4f18cfbf0c3e92fbe816efa6e2e134 100644
--- a/src/fl_draw.cxx
+++ b/src/fl_draw.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_draw.cxx,v 1.6.2.3 2000/06/05 21:21:07 mike Exp $"
+// "$Id: fl_draw.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $"
 //
 // Label drawing code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -200,5 +200,5 @@ void fl_measure(const char* str, int& w, int& h) {
 }
 
 //
-// End of "$Id: fl_draw.cxx,v 1.6.2.3 2000/06/05 21:21:07 mike Exp $".
+// End of "$Id: fl_draw.cxx,v 1.6.2.4 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_draw_image.cxx b/src/fl_draw_image.cxx
index 163844bc7d55de740be6b6740d428accd25883c3..0fb4c96ad2c0b72b8a1e876a245c8d111257a148 100644
--- a/src/fl_draw_image.cxx
+++ b/src/fl_draw_image.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_draw_image.cxx,v 1.5.2.5 2000/07/07 08:38:58 spitzak Exp $"
+// "$Id: fl_draw_image.cxx,v 1.5.2.6 2001/01/22 15:13:40 easysw Exp $"
 //
 // Image drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -573,5 +573,5 @@ void fl_rectf(int x, int y, int w, int h, uchar r, uchar g, uchar b) {
 #endif
 
 //
-// End of "$Id: fl_draw_image.cxx,v 1.5.2.5 2000/07/07 08:38:58 spitzak Exp $".
+// End of "$Id: fl_draw_image.cxx,v 1.5.2.6 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_draw_image_win32.cxx b/src/fl_draw_image_win32.cxx
index fe5d215234e6fea4a09fd5616139f08c65b8f82b..7b4f8069f6819eb10f52c66006d2112baed2517b 100644
--- a/src/fl_draw_image_win32.cxx
+++ b/src/fl_draw_image_win32.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_draw_image_win32.cxx,v 1.4.2.2 2000/06/05 21:21:07 mike Exp $"
+// "$Id: fl_draw_image_win32.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $"
 //
 // WIN32 image drawing code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -258,5 +258,5 @@ void fl_rectf(int x, int y, int w, int h, uchar r, uchar g, uchar b) {
 }
 
 //
-// End of "$Id: fl_draw_image_win32.cxx,v 1.4.2.2 2000/06/05 21:21:07 mike Exp $".
+// End of "$Id: fl_draw_image_win32.cxx,v 1.4.2.3 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_draw_pixmap.cxx b/src/fl_draw_pixmap.cxx
index 9c0576bc130b7ce8615369882e3764feda0f96a8..b64b518213ee9b9cb03edc98fc3b0d87a6d77b2d 100644
--- a/src/fl_draw_pixmap.cxx
+++ b/src/fl_draw_pixmap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_draw_pixmap.cxx,v 1.4.2.6 2000/06/05 21:21:07 mike Exp $"
+// "$Id: fl_draw_pixmap.cxx,v 1.4.2.7 2001/01/22 15:13:40 easysw Exp $"
 //
 // Pixmap drawing code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -264,5 +264,5 @@ int fl_draw_pixmap(/*const*/char*const* di, int x, int y, Fl_Color bg) {
 }
 
 //
-// End of "$Id: fl_draw_pixmap.cxx,v 1.4.2.6 2000/06/05 21:21:07 mike Exp $".
+// End of "$Id: fl_draw_pixmap.cxx,v 1.4.2.7 2001/01/22 15:13:40 easysw Exp $".
 //
diff --git a/src/fl_engraved_label.cxx b/src/fl_engraved_label.cxx
index f026d2d703019398e4015b496279a0c8ab10a40c..6a1e3801eda852a52f394488ea3f904a1dedef65 100644
--- a/src/fl_engraved_label.cxx
+++ b/src/fl_engraved_label.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_engraved_label.cxx,v 1.4.2.2 2000/06/05 21:21:07 mike Exp $"
+// "$Id: fl_engraved_label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Engraved label drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -87,5 +87,5 @@ Fl_Labeltype define_FL_EMBOSSED_LABEL() {
 }
 
 //
-// End of "$Id: fl_engraved_label.cxx,v 1.4.2.2 2000/06/05 21:21:07 mike Exp $".
+// End of "$Id: fl_engraved_label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_file_chooser.cxx b/src/fl_file_chooser.cxx
index 22f55bdf309fa46a670c475c31bee1b6442930d7..70987668eb223b2b9af14cc93deb3b103cc760f3 100644
--- a/src/fl_file_chooser.cxx
+++ b/src/fl_file_chooser.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_file_chooser.cxx,v 1.10.2.7 2000/12/06 15:45:13 easysw Exp $"
+// "$Id: fl_file_chooser.cxx,v 1.10.2.8 2001/01/22 15:13:41 easysw Exp $"
 //
 // File chooser widget for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -632,5 +632,5 @@ char* fl_file_chooser(const char* message, const char* pat, const char* fname)
 }
 
 //
-// End of "$Id: fl_file_chooser.cxx,v 1.10.2.7 2000/12/06 15:45:13 easysw Exp $".
+// End of "$Id: fl_file_chooser.cxx,v 1.10.2.8 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_font.cxx b/src/fl_font.cxx
index 97b3c2aa3420837ac4da0b277806e9255bcc2ee8..fce2deeeecfa79afde5966366ddc88aa10117a54 100644
--- a/src/fl_font.cxx
+++ b/src/fl_font.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_font.cxx,v 1.9.2.4 2000/06/05 21:21:08 mike Exp $"
+// "$Id: fl_font.cxx,v 1.9.2.5 2001/01/22 15:13:41 easysw Exp $"
 //
 // Font selection code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -293,5 +293,5 @@ void fl_draw(const char* str, int x, int y) {
 #endif
 
 //
-// End of "$Id: fl_font.cxx,v 1.9.2.4 2000/06/05 21:21:08 mike Exp $".
+// End of "$Id: fl_font.cxx,v 1.9.2.5 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_font_win32.cxx b/src/fl_font_win32.cxx
index b233b15dee4e71d88f46dd72d793d261693288df..61face7eec2c908ce76047f6215aefb3ada26f4f 100644
--- a/src/fl_font_win32.cxx
+++ b/src/fl_font_win32.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_font_win32.cxx,v 1.9.2.2 2000/06/05 21:21:08 mike Exp $"
+// "$Id: fl_font_win32.cxx,v 1.9.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // WIN32 font selection routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -174,5 +174,5 @@ void fl_draw(const char* str, int x, int y) {
 }
 
 //
-// End of "$Id: fl_font_win32.cxx,v 1.9.2.2 2000/06/05 21:21:08 mike Exp $".
+// End of "$Id: fl_font_win32.cxx,v 1.9.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_labeltype.cxx b/src/fl_labeltype.cxx
index 4104595e10a7e55222def79a167e7367f7400a6a..b669b7e6e0a64d5c66958ed12eabb12137d7e684 100644
--- a/src/fl_labeltype.cxx
+++ b/src/fl_labeltype.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_labeltype.cxx,v 1.6.2.2 2000/06/05 21:21:08 mike Exp $"
+// "$Id: fl_labeltype.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Label drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -117,5 +117,5 @@ void Fl_Widget::draw_label(int X, int Y, int W, int H, Fl_Align a) const {
 #include <FL/Fl_Input_.H>
 
 //
-// End of "$Id: fl_labeltype.cxx,v 1.6.2.2 2000/06/05 21:21:08 mike Exp $".
+// End of "$Id: fl_labeltype.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_oval_box.cxx b/src/fl_oval_box.cxx
index 52d0f776e5299efa8048b3102f5a9e487c422c2f..bf6534fd07cb5aa350b722fb0b4a0e0335e21836 100644
--- a/src/fl_oval_box.cxx
+++ b/src/fl_oval_box.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_oval_box.cxx,v 1.4.2.2 2000/06/05 21:21:08 mike Exp $"
+// "$Id: fl_oval_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Oval box drawing code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -60,5 +60,5 @@ Fl_Boxtype define_FL_OVAL_BOX() {
 }
 
 //
-// End of "$Id: fl_oval_box.cxx,v 1.4.2.2 2000/06/05 21:21:08 mike Exp $".
+// End of "$Id: fl_oval_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_overlay.cxx b/src/fl_overlay.cxx
index 9ceca424747a9735302f343c003e9fb6be516f30..e37609a619f2fedb8086b8c00852c74fac754c5a 100644
--- a/src/fl_overlay.cxx
+++ b/src/fl_overlay.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:08 mike Exp $"
+// "$Id: fl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Overlay support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -62,5 +62,5 @@ void fl_overlay_rect(int x, int y, int w, int h) {
 }
 
 //
-// End of "$Id: fl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:08 mike Exp $".
+// End of "$Id: fl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_overlay_visual.cxx b/src/fl_overlay_visual.cxx
index c9c5a76402b079472891c0f937b6ff9b04e9a3d6..42a38d5c82185108083ea5e10ea8f9c5c1da9b1c 100644
--- a/src/fl_overlay_visual.cxx
+++ b/src/fl_overlay_visual.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_overlay_visual.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $"
+// "$Id: fl_overlay_visual.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // X overlay support for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -99,5 +99,5 @@ XVisualInfo *fl_find_overlay_visual() {
 #endif
 
 //
-// End of "$Id: fl_overlay_visual.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $".
+// End of "$Id: fl_overlay_visual.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_rect.cxx b/src/fl_rect.cxx
index 613980e7d76165085482a4b87024ade600b77e74..8b05a3cc765451c1525cf5235b56dd4940e688a4 100644
--- a/src/fl_rect.cxx
+++ b/src/fl_rect.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_rect.cxx,v 1.10.2.3 2000/06/05 21:21:09 mike Exp $"
+// "$Id: fl_rect.cxx,v 1.10.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // Rectangle drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -388,5 +388,5 @@ int fl_clip_box(int x, int y, int w, int h, int& X, int& Y, int& W, int& H){
 }
 
 //
-// End of "$Id: fl_rect.cxx,v 1.10.2.3 2000/06/05 21:21:09 mike Exp $".
+// End of "$Id: fl_rect.cxx,v 1.10.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_round_box.cxx b/src/fl_round_box.cxx
index 4a89ef66d1b6fe69a68469b4a79a5b7c4cd81823..812d34e5ecf122ace3226c69ec4da135f05f29c2 100644
--- a/src/fl_round_box.cxx
+++ b/src/fl_round_box.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_round_box.cxx,v 1.6.2.2 2000/06/05 21:21:09 mike Exp $"
+// "$Id: fl_round_box.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Round box drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -116,5 +116,5 @@ Fl_Boxtype define_FL_ROUND_UP_BOX() {
 }
 
 //
-// End of "$Id: fl_round_box.cxx,v 1.6.2.2 2000/06/05 21:21:09 mike Exp $".
+// End of "$Id: fl_round_box.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_rounded_box.cxx b/src/fl_rounded_box.cxx
index 3ef0c9a79bcedef34895c9f3b7aaeda01a9bb241..3caab32ff3f8bad80bcaef0f33b2f7dc28a6b824 100644
--- a/src/fl_rounded_box.cxx
+++ b/src/fl_rounded_box.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_rounded_box.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $"
+// "$Id: fl_rounded_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Rounded box drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -93,5 +93,5 @@ Fl_Boxtype define_FL_RSHADOW_BOX() {
 }
 
 //
-// End of "$Id: fl_rounded_box.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $".
+// End of "$Id: fl_rounded_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_scroll_area.cxx b/src/fl_scroll_area.cxx
index 0a600dacec1d0c0cdd575a00250b70ce615451fd..931888bb68d270c8438e62426dc54134c41a3f94 100644
--- a/src/fl_scroll_area.cxx
+++ b/src/fl_scroll_area.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_scroll_area.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $"
+// "$Id: fl_scroll_area.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Scrolling routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -89,5 +89,5 @@ void fl_scroll(int X, int Y, int W, int H, int dx, int dy,
 }
 
 //
-// End of "$Id: fl_scroll_area.cxx,v 1.4.2.2 2000/06/05 21:21:09 mike Exp $".
+// End of "$Id: fl_scroll_area.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_set_font.cxx b/src/fl_set_font.cxx
index 2c0610051e32f91d840e9860dfbcb215073e9e93..5bb63969aebfafe8472e55a45b133b9987a82e3d 100644
--- a/src/fl_set_font.cxx
+++ b/src/fl_set_font.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_set_font.cxx,v 1.5.2.2 2000/06/05 21:21:09 mike Exp $"
+// "$Id: fl_set_font.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Font utilities for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -71,5 +71,5 @@ void Fl::set_font(Fl_Font fnum, const char* name) {
 const char* Fl::get_font(Fl_Font fnum) {return fl_fonts[fnum].name;}
 
 //
-// End of "$Id: fl_set_font.cxx,v 1.5.2.2 2000/06/05 21:21:09 mike Exp $".
+// End of "$Id: fl_set_font.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_set_fonts.cxx b/src/fl_set_fonts.cxx
index 9ab5238086da42909ad0484545c0368f05b8e8cd..8ca14a97819c0742e228d1e6fac77f09f316fe10 100644
--- a/src/fl_set_fonts.cxx
+++ b/src/fl_set_fonts.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_set_fonts.cxx,v 1.6.2.4 2000/08/20 04:35:16 spitzak Exp $"
+// "$Id: fl_set_fonts.cxx,v 1.6.2.5 2001/01/22 15:13:41 easysw Exp $"
 //
 // More font utilities for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -329,5 +329,5 @@ int Fl::get_font_sizes(Fl_Font fnum, int*& sizep) {
 #endif
 
 //
-// End of "$Id: fl_set_fonts.cxx,v 1.6.2.4 2000/08/20 04:35:16 spitzak Exp $".
+// End of "$Id: fl_set_fonts.cxx,v 1.6.2.5 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_set_fonts_win32.cxx b/src/fl_set_fonts_win32.cxx
index f7275dff9dc8a53de6fb619a2395825cf317183a..b6cc11f7313b201e8c4eb4d4ede4cc793a2dd334 100755
--- a/src/fl_set_fonts_win32.cxx
+++ b/src/fl_set_fonts_win32.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_set_fonts_win32.cxx,v 1.5.2.4 2000/10/17 07:03:41 spitzak Exp $"
+// "$Id: fl_set_fonts_win32.cxx,v 1.5.2.5 2001/01/22 15:13:41 easysw Exp $"
 //
 // WIN32 font utilities for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -90,5 +90,5 @@ int Fl::get_font_sizes(Fl_Font fnum, int*& sizep) {
 }
 
 //
-// End of "$Id: fl_set_fonts_win32.cxx,v 1.5.2.4 2000/10/17 07:03:41 spitzak Exp $".
+// End of "$Id: fl_set_fonts_win32.cxx,v 1.5.2.5 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_set_gray.cxx b/src/fl_set_gray.cxx
index aeb555ca125042fae57323692cd1b00ed4604d6b..0187780e6d466b18cd858f6c7a35886d49db62ab 100644
--- a/src/fl_set_gray.cxx
+++ b/src/fl_set_gray.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_set_gray.cxx,v 1.5.2.2 2000/06/05 21:21:10 mike Exp $"
+// "$Id: fl_set_gray.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Background (gray) color routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -58,5 +58,5 @@ void Fl::background2(uchar r, uchar g, uchar b) {
 }
 
 //
-// End of "$Id: fl_set_gray.cxx,v 1.5.2.2 2000/06/05 21:21:10 mike Exp $".
+// End of "$Id: fl_set_gray.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_shadow_box.cxx b/src/fl_shadow_box.cxx
index 5cb18458de49d74a6c2ac2d3d6619c335497afc7..06ae2710d4e0a28ddfd9d6f2a960f7d7ab1cec54 100644
--- a/src/fl_shadow_box.cxx
+++ b/src/fl_shadow_box.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_shadow_box.cxx,v 1.4.2.2 2000/06/05 21:21:10 mike Exp $"
+// "$Id: fl_shadow_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Shadow box drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -50,5 +50,5 @@ Fl_Boxtype define_FL_SHADOW_BOX() {
 }
 
 //
-// End of "$Id: fl_shadow_box.cxx,v 1.4.2.2 2000/06/05 21:21:10 mike Exp $".
+// End of "$Id: fl_shadow_box.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_shortcut.cxx b/src/fl_shortcut.cxx
index 45bd223680d46cfa3e2df720960e8911e19834ad..711b11ce6956856fbbd052c1d0d669b703a113a8 100644
--- a/src/fl_shortcut.cxx
+++ b/src/fl_shortcut.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_shortcut.cxx,v 1.4.2.8 2000/06/15 05:37:40 bill Exp $"
+// "$Id: fl_shortcut.cxx,v 1.4.2.9 2001/01/22 15:13:41 easysw Exp $"
 //
 // Shortcut support routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -192,5 +192,5 @@ int Fl_Widget::test_shortcut() {
 }
 
 //
-// End of "$Id: fl_shortcut.cxx,v 1.4.2.8 2000/06/15 05:37:40 bill Exp $".
+// End of "$Id: fl_shortcut.cxx,v 1.4.2.9 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_show_colormap.cxx b/src/fl_show_colormap.cxx
index 5d1e090816caea9969673809a8f630216cc9ec00..44e6600af3ab3da5b1f5f26b9ea092b4b7dd0d01 100644
--- a/src/fl_show_colormap.cxx
+++ b/src/fl_show_colormap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_show_colormap.cxx,v 1.5.2.3 2000/06/05 21:21:10 mike Exp $"
+// "$Id: fl_show_colormap.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // Colormap color selection dialog for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -150,5 +150,5 @@ Fl_Color fl_show_colormap(Fl_Color oldcol) {
 }
 
 //
-// End of "$Id: fl_show_colormap.cxx,v 1.5.2.3 2000/06/05 21:21:10 mike Exp $".
+// End of "$Id: fl_show_colormap.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_symbols.cxx b/src/fl_symbols.cxx
index 0297e485196a72ad3b0fb8e1463364d4086e042e..71b78d752661858a75a5d8655a403cce09c359d3 100644
--- a/src/fl_symbols.cxx
+++ b/src/fl_symbols.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_symbols.cxx,v 1.8.2.2 2000/06/05 21:21:10 mike Exp $"
+// "$Id: fl_symbols.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Symbol drawing code for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -383,5 +383,5 @@ void Fl::enable_symbols() {
 }
 
 //
-// End of "$Id: fl_symbols.cxx,v 1.8.2.2 2000/06/05 21:21:10 mike Exp $".
+// End of "$Id: fl_symbols.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/fl_vertex.cxx b/src/fl_vertex.cxx
index 93584acf8c7335d3d6b97870e57b0799f7d73a96..fae99d4d80f5158f3bb029e1989ebeeb3b48382d 100644
--- a/src/fl_vertex.cxx
+++ b/src/fl_vertex.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fl_vertex.cxx,v 1.5.2.2 2000/06/05 21:21:11 mike Exp $"
+// "$Id: fl_vertex.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Portable drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -223,5 +223,5 @@ void fl_circle(double x, double y,double r) {
 }
 
 //
-// End of "$Id: fl_vertex.cxx,v 1.5.2.2 2000/06/05 21:21:11 mike Exp $".
+// End of "$Id: fl_vertex.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/forms_bitmap.cxx b/src/forms_bitmap.cxx
index 380455da10a82639aa9279370df0fdd175d7acba..f9594ab516d90ac1dfc906535bd7de8c6f0cb6fb 100644
--- a/src/forms_bitmap.cxx
+++ b/src/forms_bitmap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: forms_bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $"
+// "$Id: forms_bitmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Forms compatible bitmap function for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -46,5 +46,5 @@ void Fl_FormsBitmap::draw() {
 }
 
 //
-// End of "$Id: forms_bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $".
+// End of "$Id: forms_bitmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/forms_compatability.cxx b/src/forms_compatability.cxx
index 83e655c2dded1d9fbcddaabbcbf1c0d87d0a3a2c..a420b44bc8ebc183d2e00f4e3ade1081626c8662 100755
--- a/src/forms_compatability.cxx
+++ b/src/forms_compatability.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: forms_compatability.cxx,v 1.5.2.2 2000/06/05 21:21:11 mike Exp $"
+// "$Id: forms_compatability.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Forms compatibility functions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -204,5 +204,5 @@ char *fl_show_simple_input(const char *str1, const char *defstr) {
 }
 
 //
-// End of "$Id: forms_compatability.cxx,v 1.5.2.2 2000/06/05 21:21:11 mike Exp $".
+// End of "$Id: forms_compatability.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/forms_free.cxx b/src/forms_free.cxx
index d16305e9f2c4972d71b7086203b6df30454cd44b..ded93179fe81650e09e2b78753fde55d03bc707f 100644
--- a/src/forms_free.cxx
+++ b/src/forms_free.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: forms_free.cxx,v 1.4.2.3 2000/06/05 21:21:11 mike Exp $"
+// "$Id: forms_free.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // Forms free widget routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -73,5 +73,5 @@ int Fl_Free::handle(int e) {
 }
 
 //
-// End of "$Id: forms_free.cxx,v 1.4.2.3 2000/06/05 21:21:11 mike Exp $".
+// End of "$Id: forms_free.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/forms_fselect.cxx b/src/forms_fselect.cxx
index 33478370ee1204c57f61d1f3d75ab5d5222fc6c2..99db78eacecb80ce18476cbda7ca753566fe5f00 100644
--- a/src/forms_fselect.cxx
+++ b/src/forms_fselect.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: forms_fselect.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $"
+// "$Id: forms_fselect.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Forms file selection routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -61,5 +61,5 @@ char*	fl_get_pattern() {return (char *)fl_pattern;}
 char*	fl_get_filename() {return fl_filename;}
 
 //
-// End of "$Id: forms_fselect.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $".
+// End of "$Id: forms_fselect.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/forms_pixmap.cxx b/src/forms_pixmap.cxx
index beabd9beafe490970e33a6d5ec25a1d6df6ef891..bbbb066b145cc54bad2ad70300b305d6e4950808 100644
--- a/src/forms_pixmap.cxx
+++ b/src/forms_pixmap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: forms_pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $"
+// "$Id: forms_pixmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Forms pixmap drawing routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -46,5 +46,5 @@ void Fl_FormsPixmap::draw() {
 }
 
 //
-// End of "$Id: forms_pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:11 mike Exp $".
+// End of "$Id: forms_pixmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/forms_timer.cxx b/src/forms_timer.cxx
index d949d9303a7ecae2fe7fab083f2ef8f2d9e08deb..b779a3cb8944b4e0f7d191a5d863aeb291d18af1 100644
--- a/src/forms_timer.cxx
+++ b/src/forms_timer.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: forms_timer.cxx,v 1.4.2.2 2000/06/05 21:21:12 mike Exp $"
+// "$Id: forms_timer.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Forms timer object for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -150,5 +150,5 @@ void Fl_Timer::suspended(char d) {
 }
 
 //
-// End of "$Id: forms_timer.cxx,v 1.4.2.2 2000/06/05 21:21:12 mike Exp $".
+// End of "$Id: forms_timer.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/gl_draw.cxx b/src/gl_draw.cxx
index ca36a423869eb75345ef8b044ba14b16dd985098..c24463c5d11a00898d5dcbb3ced0a2ea66fb8048 100644
--- a/src/gl_draw.cxx
+++ b/src/gl_draw.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: gl_draw.cxx,v 1.7.2.3 2000/06/05 21:21:12 mike Exp $"
+// "$Id: gl_draw.cxx,v 1.7.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // OpenGL drawing support routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -155,5 +155,5 @@ void gl_draw_image(const uchar* b, int x, int y, int w, int h, int d, int ld) {
 #endif
 
 //
-// End of "$Id: gl_draw.cxx,v 1.7.2.3 2000/06/05 21:21:12 mike Exp $".
+// End of "$Id: gl_draw.cxx,v 1.7.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/gl_start.cxx b/src/gl_start.cxx
index 94d05f4e7379a0480a90acda1e697e692ce93822..3438fc46411e4419c3910583fa22fb76ed03a4e0 100644
--- a/src/gl_start.cxx
+++ b/src/gl_start.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: gl_start.cxx,v 1.6.2.3 2000/06/05 21:21:12 mike Exp $"
+// "$Id: gl_start.cxx,v 1.6.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // OpenGL context routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -122,5 +122,5 @@ int Fl::gl_visual(int mode, int *alist) {
 #endif
 
 //
-// End of "$Id: gl_start.cxx,v 1.6.2.3 2000/06/05 21:21:12 mike Exp $".
+// End of "$Id: gl_start.cxx,v 1.6.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/glut_compatability.cxx b/src/glut_compatability.cxx
index cae53fcfbc6f67b732a95d451a512942b7756880..c2577047f24f204af8c69521fd7b780da2eea127 100755
--- a/src/glut_compatability.cxx
+++ b/src/glut_compatability.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: glut_compatability.cxx,v 1.4.2.4 2000/06/05 21:21:12 mike Exp $"
+// "$Id: glut_compatability.cxx,v 1.4.2.5 2001/01/22 15:13:41 easysw Exp $"
 //
 // GLUT emulation routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -399,5 +399,5 @@ int glutLayerGet(GLenum type) {
 #endif
 
 //
-// End of "$Id: glut_compatability.cxx,v 1.4.2.4 2000/06/05 21:21:12 mike Exp $".
+// End of "$Id: glut_compatability.cxx,v 1.4.2.5 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/glut_font.cxx b/src/glut_font.cxx
index 71ebc9888b633c669543aa44d327fa733b185a6c..c3ee7eb575c2953c9778b3645d73d4a0ad909414 100644
--- a/src/glut_font.cxx
+++ b/src/glut_font.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: glut_font.cxx,v 1.4.2.3 2000/06/05 21:21:12 mike Exp $"
+// "$Id: glut_font.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // GLUT bitmap font routines for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -54,5 +54,5 @@ int glutBitmapWidth(void* font, int character) {
 #endif
 
 //
-// End of "$Id: glut_font.cxx,v 1.4.2.3 2000/06/05 21:21:12 mike Exp $".
+// End of "$Id: glut_font.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/numericsort.c b/src/numericsort.c
index ef7e47e324e399e4d6a404c65d42176a3be55464..61b7931c5c4d9a42a26adc06edc985a0c5f8abab 100644
--- a/src/numericsort.c
+++ b/src/numericsort.c
@@ -1,9 +1,9 @@
 /*
- * "$Id: numericsort.c,v 1.10.2.3 2000/06/05 21:21:12 mike Exp $"
+ * "$Id: numericsort.c,v 1.10.2.4 2001/01/22 15:13:41 easysw Exp $"
  *
  * Numeric sorting routine for the Fast Light Tool Kit (FLTK).
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -84,5 +84,5 @@ int numericsort(struct dirent **A, struct dirent **B) {
 }
 
 /*
- * End of "$Id: numericsort.c,v 1.10.2.3 2000/06/05 21:21:12 mike Exp $".
+ * End of "$Id: numericsort.c,v 1.10.2.4 2001/01/22 15:13:41 easysw Exp $".
  */
diff --git a/src/scandir_win32.c b/src/scandir_win32.c
index ca48b123b03a7907b86e9915ce88b20d6e58fd3e..fe818270030097f7443ef2c4d70d66ff12ae9ebc 100644
--- a/src/scandir_win32.c
+++ b/src/scandir_win32.c
@@ -1,9 +1,9 @@
 //
-// "$Id: scandir_win32.c,v 1.11.2.3 2000/06/05 21:21:12 mike Exp $"
+// "$Id: scandir_win32.c,v 1.11.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // WIN32 scandir function for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -101,5 +101,5 @@ int alphasort (struct dirent **a, struct dirent **b) {
 #endif
 
 //
-// End of "$Id: scandir_win32.c,v 1.11.2.3 2000/06/05 21:21:12 mike Exp $".
+// End of "$Id: scandir_win32.c,v 1.11.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/src/vsnprintf.c b/src/vsnprintf.c
index 1ac6e274988c5bd4ab2ee7b3391e9870a9684c1d..6774bcf568bfd65579b7393c46fbcc4eaab45bb3 100644
--- a/src/vsnprintf.c
+++ b/src/vsnprintf.c
@@ -1,5 +1,5 @@
 /*
- * "$Id: vsnprintf.c,v 1.3.2.3 2000/06/05 21:21:13 mike Exp $"
+ * "$Id: vsnprintf.c,v 1.3.2.4 2001/01/22 15:13:41 easysw Exp $"
  *
  * vsnprintf() function for the Fast Light Tool Kit (FLTK).
  *
@@ -17,7 +17,7 @@
  * Only handles formats that are both documented in the glibc man page
  * for printf and also handled by your system's sprintf().
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -131,6 +131,6 @@ int snprintf(char* str, size_t size, const char* fmt, ...) {
 #endif
 
 /*
- * End of "$Id: vsnprintf.c,v 1.3.2.3 2000/06/05 21:21:13 mike Exp $".
+ * End of "$Id: vsnprintf.c,v 1.3.2.4 2001/01/22 15:13:41 easysw Exp $".
  */
 
diff --git a/test/CubeMain.cxx b/test/CubeMain.cxx
index d3fca57943b19e6d7cc56949ddf765db89d73476..764a0d7d274c9e35981f68778615821216a8c5ad 100644
--- a/test/CubeMain.cxx
+++ b/test/CubeMain.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: CubeMain.cxx,v 1.2.2.3 2000/08/20 04:35:17 spitzak Exp $"
+// "$Id: CubeMain.cxx,v 1.2.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // CubeView class definitions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -43,5 +43,5 @@ main(int /*argc*/, char **/*argv*/) {
 
 
 //
-// End of "$Id: CubeMain.cxx,v 1.2.2.3 2000/08/20 04:35:17 spitzak Exp $".
+// End of "$Id: CubeMain.cxx,v 1.2.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/CubeView.cxx b/test/CubeView.cxx
index dae5968c4a1feacb42dd093df00a5d58a1056fd6..b54fcfa9d8b826b451494fc8037040332c7f7dfc 100644
--- a/test/CubeView.cxx
+++ b/test/CubeView.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: CubeView.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
+// "$Id: CubeView.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // CubeView class implementation for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -145,7 +145,7 @@ void CubeView::draw() {
     if (!valid()) {
         glLoadIdentity();
         glViewport(0,0,w(),h());
-        glOrtho(-10,10,-10,10,-20000,10000);
+        glOrtho(-10,10,-10,10,-20010,10000);
         glEnable(GL_BLEND);
         glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
     }
@@ -165,5 +165,5 @@ void CubeView::draw() {
 #endif /* HAVE_GL */
 
 //
-// End of "$Id: CubeView.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
+// End of "$Id: CubeView.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/CubeView.h b/test/CubeView.h
index d29f3b1e6653391613c46184ef05244802ba8724..3678bd244adaa33f05522cfab7e512aabc417817 100644
--- a/test/CubeView.h
+++ b/test/CubeView.h
@@ -1,9 +1,9 @@
 //
-// "$Id: CubeView.h,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
+// "$Id: CubeView.h,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // CubeView class definitions for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -119,5 +119,5 @@ private:
 #endif
 
 //
-// End of "$Id: CubeView.h,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
+// End of "$Id: CubeView.h,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/Makefile b/test/Makefile
index 5ba70dbd65bd5bbacb9ea23edf80e0b87f367b55..2a9854a20b6a3e3613468f03ec48902023b7a3c4 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,9 +1,9 @@
 #
-# "$Id: Makefile,v 1.19.2.6 2000/06/05 21:21:15 mike Exp $"
+# "$Id: Makefile,v 1.19.2.7 2001/01/22 15:13:41 easysw Exp $"
 #
 # Test/example program makefile for the Fast Light Tool Kit (FLTK).
 #
-# Copyright 1998-2000 by Bill Spitzak and others.
+# Copyright 1998-2001 by Bill Spitzak and others.
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Library General Public
@@ -113,5 +113,5 @@ install:
 	@echo Nothing to install in test directory.
 
 #
-# End of "$Id: Makefile,v 1.19.2.6 2000/06/05 21:21:15 mike Exp $".
+# End of "$Id: Makefile,v 1.19.2.7 2001/01/22 15:13:41 easysw Exp $".
 #
diff --git a/test/adjuster.cxx b/test/adjuster.cxx
index 2fef87bb2b3163760f41c2284753b57a6122da1b..a3f259bca0a32352b771f91b6d25e5a9614d4129 100644
--- a/test/adjuster.cxx
+++ b/test/adjuster.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: adjuster.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
+// "$Id: adjuster.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Adjuster test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -60,5 +60,5 @@ int main(int, char ** argv) {
 }
 
 //
-// End of "$Id: adjuster.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
+// End of "$Id: adjuster.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/arc.cxx b/test/arc.cxx
index 3bb834fe4b22e1c479d95c3d9458834a21d4ea66..bafb7a8effdb7e4fc0825b3d8a4bd5639e006a44 100755
--- a/test/arc.cxx
+++ b/test/arc.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: arc.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
+// "$Id: arc.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Arc drawing test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -92,6 +92,6 @@ int main(int argc, char** argv) {
 
 
 //
-// End of "$Id: arc.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
+// End of "$Id: arc.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
 
diff --git a/test/ask.cxx b/test/ask.cxx
index 001d4ffab453762686542d840ec82f7201413b76..8e33fe1f6724ca778e83c4f4eea5034b577bf879 100644
--- a/test/ask.cxx
+++ b/test/ask.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: ask.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
+// "$Id: ask.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Standard dialog test program for the Fast Light Tool Kit (FLTK).
 //
@@ -10,7 +10,7 @@
 // This also demonstrates how to trap attempts by the user to
 // close the last window by overriding Fl::exit
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -110,5 +110,5 @@ int main(int argc, char **argv) {
 }
     
 //
-// End of "$Id: ask.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
+// End of "$Id: ask.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/bitmap.cxx b/test/bitmap.cxx
index f7d71ca7bffc3f4af26dc667ef013f99c56910a5..f351cf7905fd26003c4af98a6d900e05788b2f88 100644
--- a/test/bitmap.cxx
+++ b/test/bitmap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
+// "$Id: bitmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Bitmap label test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -137,5 +137,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: bitmap.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
+// End of "$Id: bitmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/boxtype.cxx b/test/boxtype.cxx
index c73ff492fedc64c77108b44804aed9aba766812b..074dd528d1a908985be2308935e4180b06fa95df 100644
--- a/test/boxtype.cxx
+++ b/test/boxtype.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: boxtype.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $"
+// "$Id: boxtype.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Boxtype test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -89,5 +89,5 @@ int main(int argc, char ** argv) {
 }
 
 //
-// End of "$Id: boxtype.cxx,v 1.4.2.2 2000/06/05 21:21:15 mike Exp $".
+// End of "$Id: boxtype.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/browser.cxx b/test/browser.cxx
index 1fca5272d0dd078dc283172531ec2f111dcfb138..14287e0680fb8f46a23006442833a4f01c96a6cc 100644
--- a/test/browser.cxx
+++ b/test/browser.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: browser.cxx,v 1.5.2.5 2000/12/08 15:44:24 easysw Exp $"
+// "$Id: browser.cxx,v 1.5.2.6 2001/01/22 15:13:41 easysw Exp $"
 //
 // Browser test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -133,6 +133,6 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: browser.cxx,v 1.5.2.5 2000/12/08 15:44:24 easysw Exp $".
+// End of "$Id: browser.cxx,v 1.5.2.6 2001/01/22 15:13:41 easysw Exp $".
 //
 
diff --git a/test/browserop.cxx b/test/browserop.cxx
index 7845dcda6a7771b0585e77be6c5aa2bdedcaf720..9f59434a619f721752072be05085909c7bd3cec9 100644
--- a/test/browserop.cxx
+++ b/test/browserop.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: browserop.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $"
+// "$Id: browserop.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Browser operation test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -104,5 +104,5 @@ main(int argc, char *argv[])
 }
 
 //
-// End of "$Id: browserop.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $".
+// End of "$Id: browserop.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/button.cxx b/test/button.cxx
index 794736aa8c0f95658d8541e3e735761c3c346730..e1b7ce2260fce111c5d86bedc7e6167b15d48336 100644
--- a/test/button.cxx
+++ b/test/button.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: button.cxx,v 1.4.2.3 2000/06/05 21:21:16 mike Exp $"
+// "$Id: button.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // Button/callback test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -62,5 +62,5 @@ int main(int argc, char ** argv) {
 }
 
 //
-// End of "$Id: button.cxx,v 1.4.2.3 2000/06/05 21:21:16 mike Exp $".
+// End of "$Id: button.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/buttons.cxx b/test/buttons.cxx
index f553da9ba7c2c84598e726eee2cdcb1af6102b9a..5fb134c9bfbb1a22c2fa70348597393c361b31b8 100644
--- a/test/buttons.cxx
+++ b/test/buttons.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: buttons.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $"
+// "$Id: buttons.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Another button test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -48,5 +48,5 @@ int main(int argc, char ** argv) {
 }
 
 //
-// End of "$Id: buttons.cxx,v 1.4.2.2 2000/06/05 21:21:16 mike Exp $".
+// End of "$Id: buttons.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/checkers.cxx b/test/checkers.cxx
index 046c200d8c2f7b8d57e1359af449d528f332e135..40c4e7694274a9945201e8be891b24737d63191e 100644
--- a/test/checkers.cxx
+++ b/test/checkers.cxx
@@ -1,12 +1,12 @@
 //
-// "$Id: checkers.cxx,v 1.9.2.5 2000/06/05 21:21:16 mike Exp $"
+// "$Id: checkers.cxx,v 1.9.2.6 2001/01/22 15:13:41 easysw Exp $"
 //
 // Checkers game for the Fast Light Tool Kit (FLTK).
 //
 // Hours of fun: the FLTK checkers game!
 // Based on a very old algorithim, but it still works!
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -1365,5 +1365,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: checkers.cxx,v 1.9.2.5 2000/06/05 21:21:16 mike Exp $".
+// End of "$Id: checkers.cxx,v 1.9.2.6 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/clock.cxx b/test/clock.cxx
index bf7644c836aa4e2a13c253fd6903f2a41763f2aa..8b68ea3e279f8ff350feceba430ecbd1f7fd1e1f 100644
--- a/test/clock.cxx
+++ b/test/clock.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: clock.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $"
+// "$Id: clock.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Clock test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -47,5 +47,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: clock.cxx,v 1.4.2.2 2000/06/05 21:21:17 mike Exp $".
+// End of "$Id: clock.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/colbrowser.cxx b/test/colbrowser.cxx
index c0c8f09f1340c81f681949782698aa5997bf4f41..99de569b625e1a3e4bbc3e2c89af63a0ca062960 100644
--- a/test/colbrowser.cxx
+++ b/test/colbrowser.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: colbrowser.cxx,v 1.5.2.2 2000/06/05 21:21:17 mike Exp $"
+// "$Id: colbrowser.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Forms test program for the Fast Light Tool Kit (FLTK).
 //
@@ -8,7 +8,7 @@
 // using fltk's Forms emulation.  Search for "fltk" to find all the
 // changes
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -340,5 +340,5 @@ create_form_cl(void)
 }
 
 //
-// End of "$Id: colbrowser.cxx,v 1.5.2.2 2000/06/05 21:21:17 mike Exp $".
+// End of "$Id: colbrowser.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/color_chooser.cxx b/test/color_chooser.cxx
index a15d7d0c6e146ee5dd9d50229a166d70acb14fe2..c96130ced1348407ab638500014dc428948c9565 100644
--- a/test/color_chooser.cxx
+++ b/test/color_chooser.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: color_chooser.cxx,v 1.6.2.2 2000/06/05 21:21:17 mike Exp $"
+// "$Id: color_chooser.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Color chooser test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -146,5 +146,5 @@ int main(int argc, char ** argv) {
 }
 
 //
-// End of "$Id: color_chooser.cxx,v 1.6.2.2 2000/06/05 21:21:17 mike Exp $".
+// End of "$Id: color_chooser.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/connect.cxx b/test/connect.cxx
index 613625187b4311779b3d7ecde9915a4cbf228075..37f30c1a328bab284a27aa3d07e29f589ba1684e 100644
--- a/test/connect.cxx
+++ b/test/connect.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: connect.cxx,v 1.4.2.3 2000/06/05 21:21:17 mike Exp $"
+// "$Id: connect.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // PPP example program for the Fast Light Tool Kit (FLTK).
 //
@@ -7,7 +7,7 @@
 // You must chmod +s /usr/sbin/pppd, and put all the options
 // into /etc/ppp/options.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -71,5 +71,5 @@ int main(int argc, char ** argv) {
 }
 
 //
-// End of "$Id: connect.cxx,v 1.4.2.3 2000/06/05 21:21:17 mike Exp $".
+// End of "$Id: connect.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/cube.cxx b/test/cube.cxx
index 1ab25388b8cd1cf2e0e9718b80439b7b4c0ed891..0236b3ba72ae306d9709d6d00c7f3e9157404294 100644
--- a/test/cube.cxx
+++ b/test/cube.cxx
@@ -1,11 +1,11 @@
 //
-// "$Id: cube.cxx,v 1.4.2.3 2000/06/13 20:33:36 mike Exp $"
+// "$Id: cube.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // Another forms test program for the Fast Light Tool Kit (FLTK).
 //
 // Modified to have 2 cubes to test multiple OpenGL contexts
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -169,5 +169,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: cube.cxx,v 1.4.2.3 2000/06/13 20:33:36 mike Exp $".
+// End of "$Id: cube.cxx,v 1.4.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/cursor.cxx b/test/cursor.cxx
index 763c1365f47caba9c9954682582408eb02a04214..349d3f39b324594339e9c64884d4f5fb879ca020 100644
--- a/test/cursor.cxx
+++ b/test/cursor.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: cursor.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $"
+// "$Id: cursor.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Cursor test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -159,5 +159,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: cursor.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $".
+// End of "$Id: cursor.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/curve.cxx b/test/curve.cxx
index 6743aa6c4a206f03c1671c05cea6add5b050715f..6a177106a895840f5c28630a0f0f211c91e6b064 100644
--- a/test/curve.cxx
+++ b/test/curve.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: curve.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $"
+// "$Id: curve.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Curve test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -109,5 +109,5 @@ int main(int argc, char** argv) {
 }
 
 //
-// End of "$Id: curve.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $".
+// End of "$Id: curve.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/demo.cxx b/test/demo.cxx
index 66946cf86089ad34224a1f4407b1ab248b0f94dd..4fea924aa94ce14cf6705e45d1f2f050b7bcf34a 100644
--- a/test/demo.cxx
+++ b/test/demo.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: demo.cxx,v 1.8.2.4 2000/08/20 04:35:17 spitzak Exp $"
+// "$Id: demo.cxx,v 1.8.2.5 2001/01/22 15:13:41 easysw Exp $"
 //
 // Main demo program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -332,6 +332,6 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: demo.cxx,v 1.8.2.4 2000/08/20 04:35:17 spitzak Exp $".
+// End of "$Id: demo.cxx,v 1.8.2.5 2001/01/22 15:13:41 easysw Exp $".
 //
 
diff --git a/test/doublebuffer.cxx b/test/doublebuffer.cxx
index f5a7aed0c124a32d8819405d335856336ccb1fdb..f380829a0deebfc296089fd04695ade46ca499a9 100644
--- a/test/doublebuffer.cxx
+++ b/test/doublebuffer.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: doublebuffer.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $"
+// "$Id: doublebuffer.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Double-buffering test program for the Fast Light Tool Kit (FLTK).
 //
@@ -13,7 +13,7 @@
 // This demo should work for both the GL and X versions of Fl,
 // even though the double buffering mechanism is totally different.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -122,5 +122,5 @@ int main() {
 }
 
 //
-// End of "$Id: doublebuffer.cxx,v 1.4.2.2 2000/06/05 21:21:18 mike Exp $".
+// End of "$Id: doublebuffer.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/editor.cxx b/test/editor.cxx
index e23a3418c6c76ee56630c2c38ad30a25077e73bd..a47b9ca87000d17074badb40ac1d8c743acdac34 100644
--- a/test/editor.cxx
+++ b/test/editor.cxx
@@ -1,11 +1,11 @@
 //
-// "$Id: editor.cxx,v 1.2.2.2 2000/06/05 21:21:18 mike Exp $"
+// "$Id: editor.cxx,v 1.2.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // A simple text editor program for the Fast Light Tool Kit (FLTK).
 //
 // This program is described in Chapter 4 of the FLTK Programmer's Guide.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -385,5 +385,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: editor.cxx,v 1.2.2.2 2000/06/05 21:21:18 mike Exp $".
+// End of "$Id: editor.cxx,v 1.2.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/file_chooser.cxx b/test/file_chooser.cxx
index 61fdec717fe3f2619f5e6bbf5c21219ed093e251..2da1d1f56c286553487f868361ceedcf89db4736 100644
--- a/test/file_chooser.cxx
+++ b/test/file_chooser.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: file_chooser.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $"
+// "$Id: file_chooser.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // File chooser test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -59,5 +59,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: file_chooser.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $".
+// End of "$Id: file_chooser.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/fl_jpeg_image.cxx b/test/fl_jpeg_image.cxx
index a31b5dda9bbc13fc33e5eb85fb70287c7baf0223..8ce011d84b3f3eee8cfe4dbcb4e86d62f57bd512 100644
--- a/test/fl_jpeg_image.cxx
+++ b/test/fl_jpeg_image.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: fl_jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $"
+// "$Id: fl_jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // fl_draw_image test program for the Fast Light Tool Kit (FLTK).
 //
@@ -20,7 +20,7 @@
 // The makefile assummes you decompressed and build these in a directory
 // called "jpeg-6a" in the same location as the "FL" directory.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -197,5 +197,5 @@ void readtheimage(const char *name) {
 #endif
 
 //
-// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $".
+// End of "$Id: fl_jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/fonts.cxx b/test/fonts.cxx
index 7f113b8c219aaaed60ccf378b561bee3b7e4df8e..18336b877029d419e3757eb6bfc9c7cf44facaec 100644
--- a/test/fonts.cxx
+++ b/test/fonts.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: fonts.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $"
+// "$Id: fonts.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Font demo program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -164,5 +164,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: fonts.cxx,v 1.5.2.2 2000/06/05 21:21:19 mike Exp $".
+// End of "$Id: fonts.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/forms.cxx b/test/forms.cxx
index 83aeebe75be457de9bc70a5abdb87aa0f8aa2f2f..f1c3c5fe02f38e002d342d289253e7098e8c51f5 100644
--- a/test/forms.cxx
+++ b/test/forms.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: forms.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $"
+// "$Id: forms.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Another forms demo for the Fast Light Tool Kit (FLTK).
 //
@@ -9,7 +9,7 @@
 // This demo show the different boxtypes. Note that some
 // boxtypes are not appropriate for some objects
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -229,5 +229,5 @@ main (int argc, char *argv[])
 }
 
 //
-// End of "$Id: forms.cxx,v 1.4.2.2 2000/06/05 21:21:19 mike Exp $".
+// End of "$Id: forms.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/fractals.cxx b/test/fractals.cxx
index 1b0041dda01a4d1757a7cec7037266000f27b4d3..b26a3bc7761fed6e0c1079dc017662488731f355 100644
--- a/test/fractals.cxx
+++ b/test/fractals.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: fractals.cxx,v 1.5.2.3 2000/06/05 21:21:19 mike Exp $"
+// "$Id: fractals.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // Fractal drawing demo for the Fast Light Tool Kit (FLTK).
 //
@@ -7,7 +7,7 @@
 // demonstrate how to add fltk controls to a glut program.   The glut
 // code is unchanged except for the end (search for fltk to find changes).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -805,5 +805,5 @@ int main(int argc, char** argv)
 #endif
 
 //
-// End of "$Id: fractals.cxx,v 1.5.2.3 2000/06/05 21:21:19 mike Exp $".
+// End of "$Id: fractals.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/fullscreen.cxx b/test/fullscreen.cxx
index 0785c6080631b73a02e5e7e7f43ecc5d4a237574..dfe3fd1ace5ec26b4537ab8ba44bf9b4b460c999 100644
--- a/test/fullscreen.cxx
+++ b/test/fullscreen.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: fullscreen.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $"
+// "$Id: fullscreen.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Fullscreen test program for the Fast Light Tool Kit (FLTK).
 //
@@ -34,7 +34,7 @@
 // can avoid this by making the Fl_Gl_Window a child of a normal
 // window.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -240,5 +240,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: fullscreen.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $".
+// End of "$Id: fullscreen.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/gl_overlay.cxx b/test/gl_overlay.cxx
index c4864b556252294cb7da766ef9ec9f0f8c3915c3..d8052fd73ead77ab7bc5e844996ffbc7062bfa0a 100644
--- a/test/gl_overlay.cxx
+++ b/test/gl_overlay.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: gl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $"
+// "$Id: gl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // OpenGL overlay test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -151,5 +151,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: gl_overlay.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $".
+// End of "$Id: gl_overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/glpuzzle.cxx b/test/glpuzzle.cxx
index 585af161b1a8b536fdfcd1e65ffb4181137082ef..555f40c359f10e8707e013ea26b941e9b4173d97 100644
--- a/test/glpuzzle.cxx
+++ b/test/glpuzzle.cxx
@@ -1,12 +1,12 @@
 //
-// "$Id: glpuzzle.cxx,v 1.8.2.2 2000/06/05 21:21:20 mike Exp $"
+// "$Id: glpuzzle.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // OpenGL puzzle demo for the Fast Light Tool Kit (FLTK).
 //
 // This is a GLUT demo program to demonstrate fltk's GLUT emulation.
 // Search for "fltk" to find all the changes
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -1479,5 +1479,5 @@ main(int argc, char **argv)
 #endif // added for fltk's distribution
 
 //
-// End of "$Id: glpuzzle.cxx,v 1.8.2.2 2000/06/05 21:21:20 mike Exp $".
+// End of "$Id: glpuzzle.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/hello.cxx b/test/hello.cxx
index 69aa7d722aa2b1361d229e77329780f311487471..0d0da3089aa7ca7bac96a01f2f891fec680ec97a 100644
--- a/test/hello.cxx
+++ b/test/hello.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: hello.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $"
+// "$Id: hello.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Hello, World! program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -39,5 +39,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: hello.cxx,v 1.4.2.2 2000/06/05 21:21:20 mike Exp $".
+// End of "$Id: hello.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/iconize.cxx b/test/iconize.cxx
index 62b1993ecf633491bda6c287afa55d3cb0a4984b..b6afbaded8991d3508d729cb4699e189e11c33f5 100644
--- a/test/iconize.cxx
+++ b/test/iconize.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: iconize.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $"
+// "$Id: iconize.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Iconize test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -77,5 +77,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: iconize.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $".
+// End of "$Id: iconize.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/image.cxx b/test/image.cxx
index 6dd8e8f93a7c678bc2261f8bc137daaa86535824..d0158067a4a87a3a7b82c93a64c66e014865b8c0 100644
--- a/test/image.cxx
+++ b/test/image.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: image.cxx,v 1.6.2.2 2000/06/05 21:21:21 mike Exp $"
+// "$Id: image.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Fl_Image test program for the Fast Light Tool Kit (FLTK).
 //
@@ -7,7 +7,7 @@
 // as an icon or postage stamp.  Use fl_draw_image to go directly
 // from an buffered image that changes often.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -133,5 +133,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: image.cxx,v 1.6.2.2 2000/06/05 21:21:21 mike Exp $".
+// End of "$Id: image.cxx,v 1.6.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/input.cxx b/test/input.cxx
index 9beb848fcf69abd714ce82c8f350063fd627fff8..56cc52d3027b3b6ea688e8e2bd9dac8d7bfc0d4f 100644
--- a/test/input.cxx
+++ b/test/input.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: input.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $"
+// "$Id: input.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Input field test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -117,5 +117,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: input.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $".
+// End of "$Id: input.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/jpeg_image.cxx b/test/jpeg_image.cxx
index d2f5785108ee5a9024674c3406d24816d7a80f87..e7458c1d71d2166861c5bc471baac116a07e5190 100644
--- a/test/jpeg_image.cxx
+++ b/test/jpeg_image.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $"
+// "$Id: jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // fl_draw_image test program for the Fast Light Tool Kit (FLTK).
 //
@@ -20,7 +20,7 @@
 // The makefile assummes you decompressed and build these in a directory
 // called "jpeg-6a" in the same location as the "FL" directory.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -198,5 +198,5 @@ void readtheimage(const char *name) {
 #endif
 
 //
-// End of "$Id: jpeg_image.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $".
+// End of "$Id: jpeg_image.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/keyboard.cxx b/test/keyboard.cxx
index facdcc9ad416f8701367997d1fa838fb1fa33906..087cfeb025bdcde2ba4e5ebb98e70171c379f64c 100644
--- a/test/keyboard.cxx
+++ b/test/keyboard.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: keyboard.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $"
+// "$Id: keyboard.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Keyboard/event test program for the Fast Light Tool Kit (FLTK).
 //
@@ -17,7 +17,7 @@
 //
 // On IRIX the backslash key does not work.  A bug in XKeysymToKeycode?
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -127,5 +127,5 @@ int main(int argc, char** argv) {
 }
 
 //
-// End of "$Id: keyboard.cxx,v 1.5.2.2 2000/06/05 21:21:21 mike Exp $".
+// End of "$Id: keyboard.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/label.cxx b/test/label.cxx
index 77eb58bda282c7ae924d9fde4fc6566c6e348b21..c5931af84f6de9b3735fce0604a7e099286dcdd6 100644
--- a/test/label.cxx
+++ b/test/label.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: label.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $"
+// "$Id: label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Label test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -156,5 +156,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: label.cxx,v 1.4.2.2 2000/06/05 21:21:21 mike Exp $".
+// End of "$Id: label.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/list_visuals.cxx b/test/list_visuals.cxx
index cf6ee2fd5e0fa768a6454c5b52c23b159543376c..a45bc3bcf148b08f65c7afcdbe69031f2c310323 100644
--- a/test/list_visuals.cxx
+++ b/test/list_visuals.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: list_visuals.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $"
+// "$Id: list_visuals.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Visual list utility for the Fast Light Tool Kit (FLTK).
 //
@@ -11,7 +11,7 @@
 // This file may be #included in another program to make a function to
 // call to list the visuals.  Fl.H must be included first to indicate this.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -235,5 +235,5 @@ int main(int argc, char **argv) {
 #endif
 
 //
-// End of "$Id: list_visuals.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $".
+// End of "$Id: list_visuals.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/mandelbrot.cxx b/test/mandelbrot.cxx
index aa7c06b31388818f276cea30436a8ac7c86df090..e2ea87f43086e8258b9f40e3a4f0573234900e49 100644
--- a/test/mandelbrot.cxx
+++ b/test/mandelbrot.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: mandelbrot.cxx,v 1.8.2.2 2000/06/05 21:21:22 mike Exp $"
+// "$Id: mandelbrot.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Mandelbrot set demo for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -197,5 +197,5 @@ void Drawing_Area::resize(int X,int Y,int W,int H) {
 }
 
 //
-// End of "$Id: mandelbrot.cxx,v 1.8.2.2 2000/06/05 21:21:22 mike Exp $".
+// End of "$Id: mandelbrot.cxx,v 1.8.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/mandelbrot.h b/test/mandelbrot.h
index 8eb512b0540f451c2d985ad152c8ed23bbd48885..cdd6f0a6db11d3d4d5a06c255ada30ac3decb835 100644
--- a/test/mandelbrot.h
+++ b/test/mandelbrot.h
@@ -1,9 +1,9 @@
 //
-// "$Id: mandelbrot.h,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $"
+// "$Id: mandelbrot.h,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Mandelbrot set header file for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -68,5 +68,5 @@ public:
 };
 
 //
-// End of "$Id: mandelbrot.h,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $".
+// End of "$Id: mandelbrot.h,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/menubar.cxx b/test/menubar.cxx
index 99195e37cffbc98c11e8e45f90a95a5c9a18ee9a..9def1d0eb4f62e242694fb5bc72bf5f106a2fcd1 100644
--- a/test/menubar.cxx
+++ b/test/menubar.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: menubar.cxx,v 1.6.2.7 2000/07/30 00:31:44 spitzak Exp $"
+// "$Id: menubar.cxx,v 1.6.2.8 2001/01/22 15:13:41 easysw Exp $"
 //
 // Menubar test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -216,5 +216,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: menubar.cxx,v 1.6.2.7 2000/07/30 00:31:44 spitzak Exp $".
+// End of "$Id: menubar.cxx,v 1.6.2.8 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/message.cxx b/test/message.cxx
index 7f39e4b5ffe49a85a2f3be93a3fe5f8f39a126bb..0dfe90512e8810c647c762eb511d9dca512315ba 100644
--- a/test/message.cxx
+++ b/test/message.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: message.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $"
+// "$Id: message.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Message test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -54,5 +54,5 @@ int main(int, char **) {
 }
 
 //
-// End of "$Id: message.cxx,v 1.5.2.2 2000/06/05 21:21:22 mike Exp $".
+// End of "$Id: message.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/minimum.cxx b/test/minimum.cxx
index 7f1c8588d30c5ecb578dcaa5bb1cd19307e042bc..5075b34e786936daace3edc13f4e57a484e30d75 100644
--- a/test/minimum.cxx
+++ b/test/minimum.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: minimum.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
+// "$Id: minimum.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Minimal update test program for the Fast Light Tool Kit (FLTK).
 //
@@ -20,7 +20,7 @@
 // machine is, this is an insane waste of resources, and should be
 // stopped!
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -74,5 +74,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: minimum.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
+// End of "$Id: minimum.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/navigation.cxx b/test/navigation.cxx
index c22bdab13ec1cc6e02ec949a1cd5565abcdf23b6..4b66a995e1e8987777e173e60dee847489dcb05f 100644
--- a/test/navigation.cxx
+++ b/test/navigation.cxx
@@ -1,12 +1,12 @@
 //
-// "$Id: navigation.cxx,v 1.5.2.2 2000/06/05 21:21:23 mike Exp $"
+// "$Id: navigation.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Navigation test program for the Fast Light Tool Kit (FLTK).
 //
 // Silly test of navigation keys. This is not a recommended method of
 // laying out your panels!
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -66,5 +66,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: navigation.cxx,v 1.5.2.2 2000/06/05 21:21:23 mike Exp $".
+// End of "$Id: navigation.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/output.cxx b/test/output.cxx
index 071cebdd5783d01f51a7fd963540a9fb18cafe8f..3b6566cc1893f169cf2c95aed998d5c849784679 100644
--- a/test/output.cxx
+++ b/test/output.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: output.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
+// "$Id: output.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Output test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -97,5 +97,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: output.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
+// End of "$Id: output.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/overlay.cxx b/test/overlay.cxx
index 570ac74e02cf8b5dbe2235b503c0c87ef971a357..62414ea94c741564cecb312a92ce43486db66bf6 100644
--- a/test/overlay.cxx
+++ b/test/overlay.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: overlay.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
+// "$Id: overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Overlay window test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -80,5 +80,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: overlay.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
+// End of "$Id: overlay.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/pack.cxx b/test/pack.cxx
index 1702c412713b1febfa19c3a6fd54ec69550a685e..af167324dd0ab233ae81867b9b98bba17753dc30 100644
--- a/test/pack.cxx
+++ b/test/pack.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: pack.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
+// "$Id: pack.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Fl_Pack test program for the Fast Light Tool Kit (FLTK).
 //
@@ -7,7 +7,7 @@
 // Changing the type() of an Fl_Pack after it is displayed is not supported
 // so I have to do a lot of resizing of things before that.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -114,5 +114,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: pack.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
+// End of "$Id: pack.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/pixmap.cxx b/test/pixmap.cxx
index 233b1843c3c327fb5d69e1014b607ffbb2ce34d4..38054b073c9ca8caae97d87577e068e118934ffd 100644
--- a/test/pixmap.cxx
+++ b/test/pixmap.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
+// "$Id: pixmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Pixmap label test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -87,5 +87,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: pixmap.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
+// End of "$Id: pixmap.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/pixmap_browser.cxx b/test/pixmap_browser.cxx
index b1aec297c97c9c4029cc191e7b8d6b56371abbd7..7b9041e75171bf100acf587418d607f22c35fff8 100644
--- a/test/pixmap_browser.cxx
+++ b/test/pixmap_browser.cxx
@@ -1,12 +1,12 @@
 //
-// "$Id: pixmap_browser.cxx,v 1.5.2.3 2000/06/05 21:21:23 mike Exp $"
+// "$Id: pixmap_browser.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // Another pixmap test program for the Fast Light Tool Kit (FLTK).
 //
 // On purpose, I do NOT provide a fltk method to turn a file
 // into a pixmap.  This program uses a rather simplistic one.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -165,5 +165,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: pixmap_browser.cxx,v 1.5.2.3 2000/06/05 21:21:23 mike Exp $".
+// End of "$Id: pixmap_browser.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/resizebox.cxx b/test/resizebox.cxx
index 885e7758573114687095b0409064f9c914791582..d8be76d3f3e5d05215becaddda7379d8e550bef6 100644
--- a/test/resizebox.cxx
+++ b/test/resizebox.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: resizebox.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $"
+// "$Id: resizebox.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Resize box test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -97,5 +97,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: resizebox.cxx,v 1.4.2.2 2000/06/05 21:21:23 mike Exp $".
+// End of "$Id: resizebox.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/scroll.cxx b/test/scroll.cxx
index 57c8e27949178728af51944c2c6482a41d3a8703..0b4db8de4c5f1429b54a61a43ef76a23cf8bdc1f 100644
--- a/test/scroll.cxx
+++ b/test/scroll.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: scroll.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $"
+// "$Id: scroll.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Fl_Scroll test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -137,5 +137,5 @@ int main(int argc, char** argv) {
 }
 
 //
-// End of "$Id: scroll.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $".
+// End of "$Id: scroll.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/shape.cxx b/test/shape.cxx
index 7c57a8992f6f06ffd418807423acf57a8774a1ed..ca321d2dfe08bdcfe111c5a91b5a67087d63be6e 100644
--- a/test/shape.cxx
+++ b/test/shape.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: shape.cxx,v 1.5.2.3 2000/06/05 21:21:24 mike Exp $"
+// "$Id: shape.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $"
 //
 // Tiny OpenGL demo program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -111,5 +111,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: shape.cxx,v 1.5.2.3 2000/06/05 21:21:24 mike Exp $".
+// End of "$Id: shape.cxx,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/shiny.cxx b/test/shiny.cxx
index 98927bae612147075c085f9b9b3186ea5824d8ff..ecc392053ef551e29ccbfd7f15191daa6c3222ac 100644
--- a/test/shiny.cxx
+++ b/test/shiny.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: shiny.cxx,v 1.5.2.2 2000/06/05 21:21:24 mike Exp $"
+// "$Id: shiny.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // OpenGL "shiny buttons" test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -303,5 +303,5 @@ int main(int argc, char **argv) {
 }
 
 //
-// End of "$Id: shiny.cxx,v 1.5.2.2 2000/06/05 21:21:24 mike Exp $".
+// End of "$Id: shiny.cxx,v 1.5.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/subwindow.cxx b/test/subwindow.cxx
index a3d17be45c4447f83ef481b0de95eb8f7406fcfa..3c0a325809f9f39177f3b752c8e0dacb1be987a6 100644
--- a/test/subwindow.cxx
+++ b/test/subwindow.cxx
@@ -1,5 +1,5 @@
 //
-// "$Id: subwindow.cxx,v 1.5.2.4 2000/06/05 21:21:24 mike Exp $"
+// "$Id: subwindow.cxx,v 1.5.2.5 2001/01/22 15:13:41 easysw Exp $"
 //
 // Nested window test program for the Fast Light Tool Kit (FLTK).
 //
@@ -8,7 +8,7 @@
 // Buttons and pop-up menu should work, indicating that mouse positions
 // are being correctly translated.
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -183,5 +183,5 @@ int main(int, char **) {
 }
 
 //
-// End of "$Id: subwindow.cxx,v 1.5.2.4 2000/06/05 21:21:24 mike Exp $".
+// End of "$Id: subwindow.cxx,v 1.5.2.5 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/symbols.cxx b/test/symbols.cxx
index 2d3edee86e3268068032d0a5dc7cae7b76dc0ac1..097cb1dd02d2feb69cee39360becfd684f675461 100644
--- a/test/symbols.cxx
+++ b/test/symbols.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: symbols.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $"
+// "$Id: symbols.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Symbol test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -85,5 +85,5 @@ bt("@DnArrow");
 }
 
 //
-// End of "$Id: symbols.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $".
+// End of "$Id: symbols.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/test/tile.cxx b/test/tile.cxx
index 12ffda941c71038aa5c91261eaad25e3e59504a1..177ae6016169e9035e410beb8499bc70b41133c8 100755
--- a/test/tile.cxx
+++ b/test/tile.cxx
@@ -1,9 +1,9 @@
 //
-// "$Id: tile.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $"
+// "$Id: tile.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $"
 //
 // Tile test program for the Fast Light Tool Kit (FLTK).
 //
-// Copyright 1998-2000 by Bill Spitzak and others.
+// Copyright 1998-2001 by Bill Spitzak and others.
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Library General Public
@@ -86,5 +86,5 @@ int main(int argc, char** argv) {
 }
 
 //
-// End of "$Id: tile.cxx,v 1.4.2.2 2000/06/05 21:21:24 mike Exp $".
+// End of "$Id: tile.cxx,v 1.4.2.3 2001/01/22 15:13:41 easysw Exp $".
 //
diff --git a/visualc/config.h b/visualc/config.h
index 08d79a1ee82a918110c039156ced9b388f3b5cea..938ffb832b6a6d2febddffb2246c9adea2291915 100644
--- a/visualc/config.h
+++ b/visualc/config.h
@@ -1,9 +1,9 @@
 /*
- * "$Id: config.h,v 1.5.2.3 2000/11/20 15:44:19 easysw Exp $"
+ * "$Id: config.h,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $"
  *
  * Configuration file for the Fast Light Tool Kit (FLTK) for Visual C++.
  *
- * Copyright 1998-2000 by Bill Spitzak and others.
+ * Copyright 1998-2001 by Bill Spitzak and others.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Library General Public
@@ -144,5 +144,5 @@
 #define HAVE_POLL 0
 
 /*
- * End of "$Id: config.h,v 1.5.2.3 2000/11/20 15:44:19 easysw Exp $".
+ * End of "$Id: config.h,v 1.5.2.4 2001/01/22 15:13:41 easysw Exp $".
  */