[gnumeric] 1.9.8



commit 3827c62d9e363fac155968602f8856405bf921ed
Author: Morten Welinder <welinder anemone home>
Date:   Sat May 23 21:12:33 2009 -0400

    1.9.8
---
 ChangeLog                           |    4 +++
 doc/C/ChangeLog                     |    4 +++
 doc/C/func.defs                     |   44 +++++++++++++++++++++++-----------
 doc/ChangeLog                       |    4 +++
 doc/de/ChangeLog                    |    4 +++
 plugins/applix/ChangeLog            |    4 +++
 plugins/corba/ChangeLog             |    4 +++
 plugins/derivatives/ChangeLog       |    4 +++
 plugins/dif/ChangeLog               |    4 +++
 plugins/excel/ChangeLog             |    4 +++
 plugins/fn-complex/ChangeLog        |    4 +++
 plugins/fn-database/ChangeLog       |    4 +++
 plugins/fn-date/ChangeLog           |    4 +++
 plugins/fn-eng/ChangeLog            |    4 +++
 plugins/fn-erlang/ChangeLog         |    4 +++
 plugins/fn-financial/ChangeLog      |    4 +++
 plugins/fn-info/ChangeLog           |    4 +++
 plugins/fn-logical/ChangeLog        |    4 +++
 plugins/fn-lookup/ChangeLog         |    4 +++
 plugins/fn-math/ChangeLog           |    4 +++
 plugins/fn-r/ChangeLog              |    4 +++
 plugins/fn-random/ChangeLog         |    4 +++
 plugins/fn-stat/ChangeLog           |    4 +++
 plugins/fn-string/ChangeLog         |    4 +++
 plugins/fn-tsa/ChangeLog            |    4 +++
 plugins/gda/ChangeLog               |    4 +++
 plugins/gnome-db/ChangeLog          |    4 +++
 plugins/gnome-glossary/ChangeLog    |    4 +++
 plugins/guile/ChangeLog             |    4 +++
 plugins/html/ChangeLog              |    4 +++
 plugins/lotus-123/ChangeLog         |    4 +++
 plugins/mps/ChangeLog               |    4 +++
 plugins/numtheory/ChangeLog         |    4 +++
 plugins/numtheory/doc/ChangeLog     |    4 +++
 plugins/oleo/ChangeLog              |    4 +++
 plugins/openoffice/ChangeLog        |    4 +++
 plugins/paradox/ChangeLog           |    4 +++
 plugins/perl-func/ChangeLog         |    4 +++
 plugins/perl-loader/ChangeLog       |    4 +++
 plugins/plan-perfect/ChangeLog      |    4 +++
 plugins/psiconv/ChangeLog           |    4 +++
 plugins/py-func/ChangeLog           |    4 +++
 plugins/python-loader/ChangeLog     |    4 +++
 plugins/qpro/ChangeLog              |    4 +++
 plugins/sample_datasource/ChangeLog |    4 +++
 plugins/sc/ChangeLog                |    4 +++
 plugins/sylk/ChangeLog              |    4 +++
 plugins/uihello/ChangeLog           |    4 +++
 plugins/xbase/ChangeLog             |    4 +++
 po-functions/ChangeLog              |    4 +++
 po/ChangeLog                        |    4 +++
 src/dialogs/ChangeLog               |    4 +++
 src/tools/ChangeLog                 |    4 +++
 src/tools/solver/ChangeLog          |    4 +++
 src/tools/solver/glpk/ChangeLog     |    4 +++
 src/tools/solver/lp_solve/ChangeLog |    4 +++
 src/widgets/ChangeLog               |    4 +++
 test/ChangeLog                      |    4 +++
 tools/ChangeLog                     |    4 +++
 59 files changed, 262 insertions(+), 14 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 401655c..3afc12b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-22  Morten Welinder  <terra gnome org>
 
 	* src/parse-util.c (gnm_expr_parse_str_simple): Remove.  Interface
diff --git a/doc/C/ChangeLog b/doc/C/ChangeLog
index 4633675..f9ec420 100644
--- a/doc/C/ChangeLog
+++ b/doc/C/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-13  Andreas J. Guelzow <aguelzow pyrshep ca>
 
 	* data-types.xml: fix the description of references to cells in
diff --git a/doc/C/func.defs b/doc/C/func.defs
index 77f8072..ac76a45 100644
--- a/doc/C/func.defs
+++ b/doc/C/func.defs
@@ -6852,11 +6852,20 @@ CHAR("Foo") equals "Foo".
 @CATEGORY=String
 @FUNCTION=CHAR
 @SYNTAX=CHAR(x)
- DESCRIPTION=CHAR returns the ASCII character represented by the number @x.
-
- EXAMPLES=
-CHAR(65) equals A.
-
+ DESCRIPTION=CHAR(@{x}) returns the CP1252 (Windows-1252) character with code @{x}.
+ {x}: which character to return
+ SYNTAX=CHAR(x))
+ DESCRIPTION=@{x} should be in the range 1 to 255.
+ {x}: which character to return
+ SYNTAX=CHAR(x)))
+ DESCRIPTION=CP1252 (Windows-1252) is also known as the "ANSI code page", but it is not an ANSI standard.
+ {x}: which character to return
+ SYNTAX=CHAR(x))))
+ DESCRIPTION=CP1252 (Windows-1252) is based on an early draft of ISO-8859-1, and contains all of its printable characters (but partially at different positions.)
+ {x}: which character to return
+ SYNTAX=CHAR(x)))))
+ DESCRIPTION=This function is Excel compatible.
+ {x}: which character to return
 @SEEALSO=CODE
 
 @CATEGORY=String
@@ -6872,15 +6881,22 @@ CLEAN("one"\&char(7)) equals "one".
 @SEEALSO=
 
 @CATEGORY=String
- FUNCTION=CODE
- SYNTAX=CODE(char)
- DESCRIPTION=CODE returns the ASCII number for the character @char.
-
-* This function is Excel compatible.
-
- EXAMPLES=
-CODE("A") equals 65.
-
+ FUNCTION=CHAR
+ SYNTAX=CHAR(c)
+ DESCRIPTION=CODE(@{c}) returns the CP1252 (Windows-1252) code point for character @{c}.
+ {c}: which character to return
+ SYNTAX=CHAR(c))
+ DESCRIPTION=@{c} should be a valid CP1252 (Windows-1252) character.
+ {c}: which character to return
+ SYNTAX=CHAR(c)))
+ DESCRIPTION=CP1252 (Windows-1252) is also known as the "ANSI code page", but it is not an ANSI standard.
+ {c}: which character to return
+ SYNTAX=CHAR(c))))
+ DESCRIPTION=CP1252 (Windows-1252) is based on an early draft of ISO-8859-1, and contains all of its printable characters (but partially at different positions.)
+ {c}: which character to return
+ SYNTAX=CHAR(c)))))
+ DESCRIPTION=This function is Excel compatible.
+ {c}: which character to return
 @SEEALSO=CHAR
 
 @CATEGORY=String
diff --git a/doc/ChangeLog b/doc/ChangeLog
index d9cd3a4..3e83597 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/doc/de/ChangeLog b/doc/de/ChangeLog
index 91d401f..4e2fb36 100644
--- a/doc/de/ChangeLog
+++ b/doc/de/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/applix/ChangeLog b/plugins/applix/ChangeLog
index c9488b4..2d47c1f 100644
--- a/plugins/applix/ChangeLog
+++ b/plugins/applix/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/corba/ChangeLog b/plugins/corba/ChangeLog
index f842e22..edfc99c 100644
--- a/plugins/corba/ChangeLog
+++ b/plugins/corba/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/derivatives/ChangeLog b/plugins/derivatives/ChangeLog
index 186d445..4ab1663 100644
--- a/plugins/derivatives/ChangeLog
+++ b/plugins/derivatives/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/dif/ChangeLog b/plugins/dif/ChangeLog
index d5bf455..e475547 100644
--- a/plugins/dif/ChangeLog
+++ b/plugins/dif/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/excel/ChangeLog b/plugins/excel/ChangeLog
index a40ea59..dfa6460 100644
--- a/plugins/excel/ChangeLog
+++ b/plugins/excel/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-19  Morten Welinder  <terra gnome org>
 
 	* ms-excel-read.c (excel_read_WINDOW1): Normalize bools, or else
diff --git a/plugins/fn-complex/ChangeLog b/plugins/fn-complex/ChangeLog
index 7ce799b..cc29842 100644
--- a/plugins/fn-complex/ChangeLog
+++ b/plugins/fn-complex/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-database/ChangeLog b/plugins/fn-database/ChangeLog
index 43d6447..3e20947 100644
--- a/plugins/fn-database/ChangeLog
+++ b/plugins/fn-database/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-date/ChangeLog b/plugins/fn-date/ChangeLog
index 43c8c03..80be1dd 100644
--- a/plugins/fn-date/ChangeLog
+++ b/plugins/fn-date/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-eng/ChangeLog b/plugins/fn-eng/ChangeLog
index 7fcdca9..78a3652 100644
--- a/plugins/fn-eng/ChangeLog
+++ b/plugins/fn-eng/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-erlang/ChangeLog b/plugins/fn-erlang/ChangeLog
index 808eee1..b86a144 100644
--- a/plugins/fn-erlang/ChangeLog
+++ b/plugins/fn-erlang/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-financial/ChangeLog b/plugins/fn-financial/ChangeLog
index 892509f..cf33a93 100644
--- a/plugins/fn-financial/ChangeLog
+++ b/plugins/fn-financial/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-info/ChangeLog b/plugins/fn-info/ChangeLog
index 50da182..6f4f8bb 100644
--- a/plugins/fn-info/ChangeLog
+++ b/plugins/fn-info/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-logical/ChangeLog b/plugins/fn-logical/ChangeLog
index 1931762..ef64909 100644
--- a/plugins/fn-logical/ChangeLog
+++ b/plugins/fn-logical/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-lookup/ChangeLog b/plugins/fn-lookup/ChangeLog
index 8e3e83d..a1fcd74 100644
--- a/plugins/fn-lookup/ChangeLog
+++ b/plugins/fn-lookup/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-08  Morten Welinder  <terra gnome org>
 
 	* functions.c (get_linear_lookup_cache,
diff --git a/plugins/fn-math/ChangeLog b/plugins/fn-math/ChangeLog
index a53cfe3..74c50dd 100644
--- a/plugins/fn-math/ChangeLog
+++ b/plugins/fn-math/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-14  Morten Welinder  <terra gnome org>
 
 	* functions.c (range_lcm): Don't change the supplied data.
diff --git a/plugins/fn-r/ChangeLog b/plugins/fn-r/ChangeLog
index bd6821a..9399da4 100644
--- a/plugins/fn-r/ChangeLog
+++ b/plugins/fn-r/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-random/ChangeLog b/plugins/fn-random/ChangeLog
index b9d2208..0da246a 100644
--- a/plugins/fn-random/ChangeLog
+++ b/plugins/fn-random/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/fn-stat/ChangeLog b/plugins/fn-stat/ChangeLog
index 0c0ad6e..dce5804 100644
--- a/plugins/fn-stat/ChangeLog
+++ b/plugins/fn-stat/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-11  Morten Welinder  <terra gnome org>
 
 	* functions.c (gnumeric_ssmedian): Simplify.
diff --git a/plugins/fn-string/ChangeLog b/plugins/fn-string/ChangeLog
index 7038cb2..9c5e87a 100644
--- a/plugins/fn-string/ChangeLog
+++ b/plugins/fn-string/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-16  Andreas J. Guelzow <aguelzow pyrshep ca>
 
 	* functions.c (help_char): Fix the description of CHAR and CODE.
diff --git a/plugins/fn-tsa/ChangeLog b/plugins/fn-tsa/ChangeLog
index 7f5fab1..8b983f8 100644
--- a/plugins/fn-tsa/ChangeLog
+++ b/plugins/fn-tsa/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/gda/ChangeLog b/plugins/gda/ChangeLog
index d97837e..2ed9ac5 100644
--- a/plugins/gda/ChangeLog
+++ b/plugins/gda/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/gnome-db/ChangeLog b/plugins/gnome-db/ChangeLog
index a93715b..71d3642 100644
--- a/plugins/gnome-db/ChangeLog
+++ b/plugins/gnome-db/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/gnome-glossary/ChangeLog b/plugins/gnome-glossary/ChangeLog
index 034e939..fc72b46 100644
--- a/plugins/gnome-glossary/ChangeLog
+++ b/plugins/gnome-glossary/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/guile/ChangeLog b/plugins/guile/ChangeLog
index 80d2967..74f46df 100644
--- a/plugins/guile/ChangeLog
+++ b/plugins/guile/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/html/ChangeLog b/plugins/html/ChangeLog
index b56f397..1f76f5e 100644
--- a/plugins/html/ChangeLog
+++ b/plugins/html/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-17  Andreas J. Guelzow <aguelzow pyrshep ca>
 
 	* html.c (html_write_cell_content): make sure there is 
diff --git a/plugins/lotus-123/ChangeLog b/plugins/lotus-123/ChangeLog
index a9ee235..e1a9219 100644
--- a/plugins/lotus-123/ChangeLog
+++ b/plugins/lotus-123/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/mps/ChangeLog b/plugins/mps/ChangeLog
index 4fe9c87..b6764ce 100644
--- a/plugins/mps/ChangeLog
+++ b/plugins/mps/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/numtheory/ChangeLog b/plugins/numtheory/ChangeLog
index 45fe492..9e7c7f9 100644
--- a/plugins/numtheory/ChangeLog
+++ b/plugins/numtheory/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/numtheory/doc/ChangeLog b/plugins/numtheory/doc/ChangeLog
index e89abed..e283609 100644
--- a/plugins/numtheory/doc/ChangeLog
+++ b/plugins/numtheory/doc/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/oleo/ChangeLog b/plugins/oleo/ChangeLog
index 4b3c481..0efbf83 100644
--- a/plugins/oleo/ChangeLog
+++ b/plugins/oleo/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/openoffice/ChangeLog b/plugins/openoffice/ChangeLog
index 5bbc998..dca3385 100644
--- a/plugins/openoffice/ChangeLog
+++ b/plugins/openoffice/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-23  Andreas J. Guelzow <aguelzow pyrshep ca>
 
 	* openoffice-write.c (odf_write_style): added more style info and split 
diff --git a/plugins/paradox/ChangeLog b/plugins/paradox/ChangeLog
index 0ea9ba2..3cbce35 100644
--- a/plugins/paradox/ChangeLog
+++ b/plugins/paradox/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/perl-func/ChangeLog b/plugins/perl-func/ChangeLog
index 351d8d4..4f7a3b3 100644
--- a/plugins/perl-func/ChangeLog
+++ b/plugins/perl-func/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/perl-loader/ChangeLog b/plugins/perl-loader/ChangeLog
index 0c468bb..e413848 100644
--- a/plugins/perl-loader/ChangeLog
+++ b/plugins/perl-loader/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/plan-perfect/ChangeLog b/plugins/plan-perfect/ChangeLog
index 3200f98..4b10fc0 100644
--- a/plugins/plan-perfect/ChangeLog
+++ b/plugins/plan-perfect/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/psiconv/ChangeLog b/plugins/psiconv/ChangeLog
index 92623c4..44418db 100644
--- a/plugins/psiconv/ChangeLog
+++ b/plugins/psiconv/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/py-func/ChangeLog b/plugins/py-func/ChangeLog
index 0427376..971198e 100644
--- a/plugins/py-func/ChangeLog
+++ b/plugins/py-func/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/python-loader/ChangeLog b/plugins/python-loader/ChangeLog
index 92f96bf..3a59413 100644
--- a/plugins/python-loader/ChangeLog
+++ b/plugins/python-loader/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/qpro/ChangeLog b/plugins/qpro/ChangeLog
index 7473d2c..dfd8105 100644
--- a/plugins/qpro/ChangeLog
+++ b/plugins/qpro/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/sample_datasource/ChangeLog b/plugins/sample_datasource/ChangeLog
index cc7454c..a7d5a2c 100644
--- a/plugins/sample_datasource/ChangeLog
+++ b/plugins/sample_datasource/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/sc/ChangeLog b/plugins/sc/ChangeLog
index 6422d44..01be3ed 100644
--- a/plugins/sc/ChangeLog
+++ b/plugins/sc/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/sylk/ChangeLog b/plugins/sylk/ChangeLog
index 8a3092d..7ccbb86 100644
--- a/plugins/sylk/ChangeLog
+++ b/plugins/sylk/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/uihello/ChangeLog b/plugins/uihello/ChangeLog
index 6162c1b..62d04f4 100644
--- a/plugins/uihello/ChangeLog
+++ b/plugins/uihello/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/plugins/xbase/ChangeLog b/plugins/xbase/ChangeLog
index 7c5a9b6..812db67 100644
--- a/plugins/xbase/ChangeLog
+++ b/plugins/xbase/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/po-functions/ChangeLog b/po-functions/ChangeLog
index 7891787..9f029c8 100644
--- a/po-functions/ChangeLog
+++ b/po-functions/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/po/ChangeLog b/po/ChangeLog
index f8548b8..06b9f8d 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/src/dialogs/ChangeLog b/src/dialogs/ChangeLog
index 80c31fa..9149268 100644
--- a/src/dialogs/ChangeLog
+++ b/src/dialogs/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-18  Morten Welinder  <terra gnome org>
 
 	* dialog-workbook-attr.c (cb_attr_dialog_dialog_apply): Use
diff --git a/src/tools/ChangeLog b/src/tools/ChangeLog
index 64eaa90..661d26d 100644
--- a/src/tools/ChangeLog
+++ b/src/tools/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/src/tools/solver/ChangeLog b/src/tools/solver/ChangeLog
index 8dce467..1af3327 100644
--- a/src/tools/solver/ChangeLog
+++ b/src/tools/solver/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/src/tools/solver/glpk/ChangeLog b/src/tools/solver/glpk/ChangeLog
index 0217c5c..bc48a06 100644
--- a/src/tools/solver/glpk/ChangeLog
+++ b/src/tools/solver/glpk/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/src/tools/solver/lp_solve/ChangeLog b/src/tools/solver/lp_solve/ChangeLog
index dc4593b..1f97c70 100644
--- a/src/tools/solver/lp_solve/ChangeLog
+++ b/src/tools/solver/lp_solve/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-06  Morten Welinder <terra gnome org>
 
 	* Release 1.9.7
diff --git a/src/widgets/ChangeLog b/src/widgets/ChangeLog
index 2d8f5a8..dcac2f3 100644
--- a/src/widgets/ChangeLog
+++ b/src/widgets/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-23  Morten Welinder  <terra gnome org>
 
 	* gnm-notebook.c (I_): Don't translate signal names.
diff --git a/test/ChangeLog b/test/ChangeLog
index 2b77b19..d6e8cd7 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-18  Morten Welinder  <terra gnome org>
 
 	* t9000-ssindex.pl (compare_items): Update to match improves
diff --git a/tools/ChangeLog b/tools/ChangeLog
index 15f71ad..264f049 100644
--- a/tools/ChangeLog
+++ b/tools/ChangeLog
@@ -1,3 +1,7 @@
+2009-05-23  Morten Welinder <terra gnome org>
+
+	* Release 1.9.8
+
 2009-05-21  Morten Welinder  <terra gnome org>
 
 	* check-gfrees: Check go_format_unref too.



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]