[gnumeric] 1.12.4



commit 3417e3c84f125d12cae158ed74040682ff364d19
Author: Morten Welinder <terra gnome org>
Date:   Wed Jul 10 21:22:09 2013 -0400

    1.12.4

 ChangeLog                           |    4 +
 doc/C/ChangeLog                     |    4 +
 doc/C/func.defs                     |  110 +++++++++++++-----------
 doc/C/functions.xml                 |  159 +++++++++++++++++++----------------
 doc/ChangeLog                       |    4 +
 doc/de/ChangeLog                    |    4 +
 plugins/applix/ChangeLog            |    4 +
 plugins/dif/ChangeLog               |    4 +
 plugins/excel/ChangeLog             |    4 +
 plugins/excelplugins/ChangeLog      |    4 +
 plugins/fn-christian-date/ChangeLog |    4 +
 plugins/fn-complex/ChangeLog        |    4 +
 plugins/fn-database/ChangeLog       |    4 +
 plugins/fn-date/ChangeLog           |    4 +
 plugins/fn-derivatives/ChangeLog    |    4 +
 plugins/fn-eng/ChangeLog            |    4 +
 plugins/fn-erlang/ChangeLog         |    4 +
 plugins/fn-financial/ChangeLog      |    4 +
 plugins/fn-hebrew-date/ChangeLog    |    4 +
 plugins/fn-info/ChangeLog           |    4 +
 plugins/fn-logical/ChangeLog        |    4 +
 plugins/fn-lookup/ChangeLog         |    4 +
 plugins/fn-math/ChangeLog           |    4 +
 plugins/fn-numtheory/ChangeLog      |    4 +
 plugins/fn-numtheory/doc/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/glpk/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/lpsolve/ChangeLog           |    4 +
 plugins/mps/ChangeLog               |    4 +
 plugins/nlsolve/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/widgets/ChangeLog               |    4 +
 test/ChangeLog                      |    4 +
 tools/ChangeLog                     |    4 +
 tools/win32/ChangeLog               |    4 +
 63 files changed, 387 insertions(+), 126 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 4630234..806fad1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-07-10  Morten Welinder  <terra gnome org>
 
        * src/value.c (parse_criteria): Patterns should anchor at the end
diff --git a/doc/C/ChangeLog b/doc/C/ChangeLog
index a460585..c3d99b8 100644
--- a/doc/C/ChangeLog
+++ b/doc/C/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-27  Andreas J. Guelzow <aguelzow pyrshep ca>
 
        * func.defs: update
diff --git a/doc/C/func.defs b/doc/C/func.defs
index 88f25e6..774ebca 100644
--- a/doc/C/func.defs
+++ b/doc/C/func.defs
@@ -1402,14 +1402,6 @@ The depreciation coefficient used is:
 @SEEALSO=AMORDEGRC
 
 @CATEGORY=Finance
- FUNCTION=ATL_LAST
- SHORTDESC=sample real-time data source
- SYNTAX=ATL_LAST(tag)
- ARGUMENTDESCRIPTION=@{tag}: tag to watch
- DESCRIPTION=ATL_LAST is a sample implementation of a real time data source.  It takes a string tag and 
monitors the named pipe ~/atl for changes to the value of that tag.
- NOTE=This is not intended to be generally enabled and is OFF by default.
-
- CATEGORY=Finance
 @FUNCTION=COUPDAYBS
 @SHORTDESC=number of days from coupon period to settlement
 @SYNTAX=COUPDAYBS(settlement,maturity,frequency,basis,eom)
@@ -4264,6 +4256,20 @@ The successive use of the simulation tool also requires that you give to the too
 @SEEALSO=RANDBERNOULLI
 
 @CATEGORY=Statistics
+ FUNCTION=BETA DIST
+ SHORTDESC=cumulative distribution function of the beta distribution
+ SYNTAX=BETA DIST(x,alpha,beta,cumulative,a,b)
+ ARGUMENTDESCRIPTION=@{x}: number
+ {alpha}: scale parameter
+ {beta}: scale parameter
+ {cumulative}: whether to evaluate the density function or the cumulative distribution function
+ {a}: optional lower bound, defaults to 0
+ {b}: optional upper bound, defaults to 1
+ NOTE=If @{x} < @{a} or @{x} > @{b} this function returns a #NUM! error. If @{alpha} <= 0 or @{beta} <= 0, 
this function returns a #NUM! error. If @{a} >= @{b} this function returns a #NUM! error.
+ EXCEL=This function is Excel compatible.
+ SEEALSO=BETAINV,BETADIST
+
+ CATEGORY=Statistics
 @FUNCTION=BETADIST
 @SHORTDESC=cumulative distribution function of the beta distribution
 @SYNTAX=BETADIST(x,alpha,beta,a,b)
@@ -4692,7 +4698,7 @@ GROWTH returns an array having one column and a row for each data point in @{new
 @SHORTDESC=calculate regression leverage
 @SYNTAX=LEVERAGE(A)
 @ARGUMENTDESCRIPTION= {A}: a matrix
- DESCRIPTION=Returns the diagonal of @{A} (@{A}^T @{A})^-1 @{A}T as a column vector.
+ DESCRIPTION=Returns the diagonal of @{A} (@{A}^T @{A})^-1 @{A}^T as a column vector.
 @NOTE=If the matrix is singular, #VALUE! is returned.
 
 @CATEGORY=Statistics
@@ -4852,7 +4858,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {f}: number of failures
 @{t}: threshold number of successes
 @{p}: probability of a success
- NOTE=If @{f} or @{t} is a non-integer it is truncated. If (@{f} + @{t} -1) <= 0 this function returns a 
#NUM! error. If @{p} < 0 or @{p} > 1 this functions returns a #NUM! error.
+ NOTE=If @{f} or @{t} is a non-integer it is truncated. If (@{f} + @{t} -1) <= 0 this function returns a 
#NUM! error. If @{p} < 0 or @{p} > 1 this function returns a #NUM! error.
 @EXCEL=This function is Excel compatible.
 @SEEALSO=BINOMDIST,COMBIN,FACT,HYPGEOMDIST,PERMUT
 
@@ -5111,8 +5117,8 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @FUNCTION=R.DNBINOM
 @SHORTDESC=probability density function of the negative binomial distribution
 @SYNTAX=R.DNBINOM(x,n,psuc,give_log)
- ARGUMENTDESCRIPTION=@{x}: observation
- {n}: the number of trials
+ ARGUMENTDESCRIPTION=@{x}: observation (number of failures)
+ {n}: required number of successes
 @{psuc}: the probability of success in each trial
 @{give_log}: if true, log of the result will be returned instead
 @DESCRIPTION=This function returns the probability density function of the negative binomial distribution.
@@ -5191,7 +5197,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{a}: the first shape parameter of the distribution
 @{b}: the second scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the beta distribution.
 @SEEALSO=R.DBETA,R.QBETA
 
@@ -5203,7 +5209,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{n}: the number of trials
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the binomial distribution.
 @SEEALSO=R.DBINOM,R.QBINOM
 
@@ -5215,7 +5221,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{location}: the center of the distribution
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the Cauchy distribution.
 @SEEALSO=R.DCAUCHY,R.QCAUCHY
 
@@ -5226,7 +5232,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {x}: observation
 @{df}: the number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the chi-square distribution.
 @ODF=A two argument invocation R.PCHISQ(@{x},@{df}) is exported to OpenFormula as CHISQDIST(@{x},@{df}).
 @SEEALSO=R.DCHISQ,R.QCHISQ
@@ -5238,7 +5244,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {x}: observation
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the exponential distribution.
 @SEEALSO=R.DEXP,R.QEXP
 
@@ -5250,7 +5256,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{n1}: the first number of degrees of freedom of the distribution
 @{n2}: the second number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the F distribution.
 @SEEALSO=R.DF,R.QF
 
@@ -5262,7 +5268,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{shape}: the shape parameter of the distribution
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the gamma distribution.
 @SEEALSO=R.DGAMMA,R.QGAMMA
 
@@ -5273,7 +5279,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {x}: observation
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the geometric distribution.
 @SEEALSO=R.DGEOM,R.QGEOM
 
@@ -5286,7 +5292,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{b}: the number of black balls
 @{n}: the number of balls drawn
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the hypergeometric distribution.
 @SEEALSO=R.DHYPER,R.QHYPER
 
@@ -5298,7 +5304,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{logmean}: mean of the underlying normal distribution
 @{logsd}: standard deviation of the underlying normal distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the log-normal distribution.
 @SEEALSO=R.DLNORM,R.QLNORM
 
@@ -5306,11 +5312,11 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @FUNCTION=R.PNBINOM
 @SHORTDESC=cumulative distribution function of the negative binomial distribution
 @SYNTAX=R.PNBINOM(x,n,psuc,lower_tail,log_p)
- ARGUMENTDESCRIPTION=@{x}: observation
- {n}: the number of trials
+ ARGUMENTDESCRIPTION=@{x}: observation (number of failures)
+ {n}: required number of successes
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the negative binomial 
distribution.
 @SEEALSO=R.DNBINOM,R.QNBINOM
 
@@ -5322,7 +5328,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{mu}: mean of the distribution
 @{sigma}: standard deviation of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the normal distribution.
 @SEEALSO=R.DNORM,R.QNORM
 
@@ -5333,7 +5339,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {x}: observation
 @{lambda}: the mean of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the Poisson distribution.
 @SEEALSO=R.DPOIS,R.QPOIS
 
@@ -5346,7 +5352,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{location}: the location parameter of the distribution
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the skew-normal distribution.
 @SEEALSO=R.DSNORM,R.QSNORM
 
@@ -5358,7 +5364,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{n}: the number of degrees of freedom of the distribution
 @{shape}: the shape parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the skew-t distribution.
 @SEEALSO=R.DST,R.QST
 
@@ -5369,7 +5375,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {x}: observation
 @{n}: the number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the Student t distribution.
 @SEEALSO=R.DT,R.QT
 
@@ -5382,7 +5388,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{df}: the number of degrees of freedom of the distribution
 @{nranges}: the number of ranges; default is 1
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the Studentized range 
distribution.
 @SEEALSO=R.QTUKEY
 
@@ -5394,7 +5400,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{shape}: the shape parameter of the distribution
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, log of the probability is used
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the cumulative distribution function of the Weibull distribution.
 @SEEALSO=R.DWEIBULL,R.QWEIBULL
 
@@ -5406,7 +5412,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{a}: the first shape parameter of the distribution
 @{b}: the second scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the beta distribution.
 @SEEALSO=R.DBETA,R.PBETA
 
@@ -5418,7 +5424,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{n}: the number of trials
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the binomial distribution.
 @SEEALSO=R.DBINOM,R.PBINOM
 
@@ -5430,7 +5436,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{location}: the center of the distribution
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the Cauchy distribution.
 @SEEALSO=R.DCAUCHY,R.PCAUCHY
 
@@ -5441,7 +5447,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {p}: probability or natural logarithm of the probability
 @{df}: the number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the chi-square distribution.
 @ODF=A two argument invocation R.QCHISQ(@{p},@{df}) is exported to OpenFormula as CHISQINV(@{p},@{df}).
 @SEEALSO=R.DCHISQ,R.PCHISQ
@@ -5453,7 +5459,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {p}: probability or natural logarithm of the probability
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the exponential distribution.
 @SEEALSO=R.DEXP,R.PEXP
 
@@ -5465,7 +5471,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{n1}: the first number of degrees of freedom of the distribution
 @{n2}: the second number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the F distribution.
 @SEEALSO=R.DF,R.PF
 
@@ -5477,7 +5483,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{shape}: the shape parameter of the distribution
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the gamma distribution.
 @SEEALSO=R.DGAMMA,R.PGAMMA
 
@@ -5488,7 +5494,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {p}: probability or natural logarithm of the probability
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the geometric distribution.
 @SEEALSO=R.DGEOM,R.PGEOM
 
@@ -5501,7 +5507,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{b}: the number of black balls
 @{n}: the number of balls drawn
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the hypergeometric distribution.
 @SEEALSO=R.DHYPER,R.PHYPER
 
@@ -5513,7 +5519,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{logmean}: mean of the underlying normal distribution
 @{logsd}: standard deviation of the underlying normal distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the log-normal distribution.
 @SEEALSO=R.DLNORM,R.PLNORM
 
@@ -5522,10 +5528,10 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @SHORTDESC=probability quantile function of the negative binomial distribution
 @SYNTAX=R.QNBINOM(p,n,psuc,lower_tail,log_p)
 @ARGUMENTDESCRIPTION= {p}: probability or natural logarithm of the probability
- {n}: the number of trials
+ {n}: required number of successes
 @{psuc}: the probability of success in each trial
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the negative binomial distribution.
 @SEEALSO=R.DNBINOM,R.PNBINOM
 
@@ -5537,7 +5543,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{mu}: mean of the distribution
 @{sigma}: standard deviation of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the normal distribution.
 @SEEALSO=R.DNORM,R.PNORM
 
@@ -5548,7 +5554,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {p}: probability or natural logarithm of the probability
 @{lambda}: the mean of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the Poisson distribution.
 @SEEALSO=R.DPOIS,R.PPOIS
 
@@ -5561,7 +5567,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{location}: the location parameter of the distribution
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the skew-normal distribution.
 @SEEALSO=R.DSNORM,R.PSNORM
 
@@ -5573,7 +5579,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{n}: the number of degrees of freedom of the distribution
 @{shape}: the shape parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the skew-t distribution.
 @SEEALSO=R.DST,R.PST
 
@@ -5584,7 +5590,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @ARGUMENTDESCRIPTION= {p}: probability or natural logarithm of the probability
 @{n}: the number of degrees of freedom of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the Student t distribution.
 @SEEALSO=R.DT,R.PT
 
@@ -5597,7 +5603,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{df}: the number of degrees of freedom of the distribution
 @{nranges}: the number of ranges; default is 1
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the Studentized range distribution.
 @SEEALSO=R.PTUKEY
 
@@ -5609,7 +5615,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
 @{shape}: the shape parameter of the distribution
 @{scale}: the scale parameter of the distribution
 @{lower_tail}: if true (the default), the lower tail of the distribution is considered
- {log_p}: if true, @{p} is the natural logarithm of the probability; defaults to false
+ {log_p}: if true, the natural logarithm of the probability is given or returned; defaults to false
 @DESCRIPTION=This function returns the probability quantile function, i.e., the inverse of the cumulative 
distribution function, of the Weibull distribution.
 @SEEALSO=R.DWEIBULL,R.PWEIBULL
 
@@ -5842,7 +5848,7 @@ This function is Excel compatible for non-negative @{x}.
 @SYNTAX=TINV(p,dof)
 @ARGUMENTDESCRIPTION= {p}: probability in both tails
 @{dof}: number of degrees of freedom
- DESCRIPTION=This functions returns the non-negative value x such that the area under the Student t density 
with @{dof} degrees of freedom to the right of x is @{p}/2.
+ DESCRIPTION=This function returns the non-negative value x such that the area under the Student t density 
with @{dof} degrees of freedom to the right of x is @{p}/2.
 @NOTE=If @{p} < 0 or @{p} > 1 or @{dof} < 1 this function returns a #NUM! error. The parameterization of 
this function is different from what is used for, e.g., NORMSINV.  This is a common source of mistakes, but 
necessary for compatibility.
 @EXCEL=This function is Excel compatible.
 @SEEALSO=TDIST,TTEST
diff --git a/doc/C/functions.xml b/doc/C/functions.xml
index af79070..e0ba55d 100644
--- a/doc/C/functions.xml
+++ b/doc/C/functions.xml
@@ -4861,36 +4861,6 @@
       </para>
       </refsect1>
     </refentry>
-    <refentry id="gnumeric-function-ATL_LAST">
-      <refmeta>
-        <refentrytitle>
-          <function>ATL_LAST</function>
-        </refentrytitle>
-      </refmeta>
-      <refnamediv>
-        <refname>
-          <function>ATL_LAST</function>
-        </refname>
-        <refpurpose>
-        sample real-time data source
-      </refpurpose>
-      </refnamediv>
-      <refsynopsisdiv>
-        <synopsis><function>ATL_LAST</function>(<parameter>tag</parameter>)</synopsis>
-      </refsynopsisdiv>
-      <refsect1>
-        <title>Arguments</title>
-        <para><parameter>tag</parameter>: tag to watch</para>
-      </refsect1>
-      <refsect1>
-        <title>Description</title>
-        <para><function>ATL_LAST</function> is a sample implementation of a real time data source.  It takes 
a string tag and monitors the named pipe ~/atl for changes to the value of that tag.</para>
-      </refsect1>
-      <refsect1>
-        <title>Note</title>
-        <para>This is not intended to be generally enabled and is OFF by default.</para>
-      </refsect1>
-    </refentry>
     <refentry id="gnumeric-function-COUPDAYBS">
       <refmeta>
         <refentrytitle>
@@ -14706,6 +14676,47 @@
       </para>
       </refsect1>
     </refentry>
+    <refentry id="gnumeric-function-BETA.DIST">
+      <refmeta>
+        <refentrytitle>
+          <function>BETA.DIST</function>
+        </refentrytitle>
+      </refmeta>
+      <refnamediv>
+        <refname>
+          <function>BETA.DIST</function>
+        </refname>
+        <refpurpose>
+        cumulative distribution function of the beta distribution
+      </refpurpose>
+      </refnamediv>
+      <refsynopsisdiv>
+        
<synopsis><function>BETA.DIST</function>(<parameter>x</parameter>,<parameter>alpha</parameter>,<parameter>beta</parameter>,<parameter>cumulative</parameter>,<parameter>a</parameter>,<parameter>b</parameter>)</synopsis>
+      </refsynopsisdiv>
+      <refsect1>
+        <title>Arguments</title>
+        <para><parameter>x</parameter>: number</para>
+        <para><parameter>alpha</parameter>: scale parameter</para>
+        <para><parameter>beta</parameter>: scale parameter</para>
+        <para><parameter>cumulative</parameter>: whether to evaluate the density function or the cumulative 
distribution function</para>
+        <para><parameter>a</parameter>: optional lower bound, defaults to 0</para>
+        <para><parameter>b</parameter>: optional upper bound, defaults to 1</para>
+      </refsect1>
+      <refsect1>
+        <title>Note</title>
+        <para>If <parameter>x</parameter> &lt; <parameter>a</parameter> or <parameter>x</parameter> &gt; 
<parameter>b</parameter> this function returns a #NUM! error. If <parameter>alpha</parameter> &lt;= 0 or 
<parameter>beta</parameter> &lt;= 0, this function returns a #NUM! error. If <parameter>a</parameter> &gt;= 
<parameter>b</parameter> this function returns a #NUM! error.</para>
+      </refsect1>
+      <refsect1>
+        <title>Microsoft Excel Compatibility</title>
+        <para>This function is Excel compatible.</para>
+      </refsect1>
+      <refsect1>
+        <title>See also</title>
+        <para><link linkend="gnumeric-function-BETAINV"><function>BETAINV</function></link>,
+        <link linkend="gnumeric-function-BETADIST"><function>BETADIST</function></link>.
+      </para>
+      </refsect1>
+    </refentry>
     <refentry id="gnumeric-function-BETADIST">
       <refmeta>
         <refentrytitle>
@@ -16232,7 +16243,7 @@
       </refsect1>
       <refsect1>
         <title>Description</title>
-        <para>Returns the diagonal of <parameter>A</parameter> (<parameter>A</parameter>^T 
<parameter>A</parameter>)^-1 <parameter>A</parameter>T as a column vector.</para>
+        <para>Returns the diagonal of <parameter>A</parameter> (<parameter>A</parameter>^T 
<parameter>A</parameter>)^-1 <parameter>A</parameter>^T as a column vector.</para>
       </refsect1>
       <refsect1>
         <title>Note</title>
@@ -16793,7 +16804,7 @@
       </refsect1>
       <refsect1>
         <title>Note</title>
-        <para>If <parameter>f</parameter> or <parameter>t</parameter> is a non-integer it is truncated. If 
(<parameter>f</parameter> + <parameter>t</parameter> -1) &lt;= 0 this function returns a #NUM! error. If 
<parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this functions returns a #NUM! 
error.</para>
+        <para>If <parameter>f</parameter> or <parameter>t</parameter> is a non-integer it is truncated. If 
(<parameter>f</parameter> + <parameter>t</parameter> -1) &lt;= 0 this function returns a #NUM! error. If 
<parameter>p</parameter> &lt; 0 or <parameter>p</parameter> &gt; 1 this function returns a #NUM! error.</para>
       </refsect1>
       <refsect1>
         <title>Microsoft Excel Compatibility</title>
@@ -17700,8 +17711,8 @@
       </refsynopsisdiv>
       <refsect1>
         <title>Arguments</title>
-        <para><parameter>x</parameter>: observation</para>
-        <para><parameter>n</parameter>: the number of trials</para>
+        <para><parameter>x</parameter>: observation (number of failures)</para>
+        <para><parameter>n</parameter>: required number of successes</para>
         <para><parameter>psuc</parameter>: the probability of success in each trial</para>
         <para><parameter>give_log</parameter>: if true, log of the result will be returned instead</para>
       </refsect1>
@@ -17948,7 +17959,7 @@
         <para><parameter>a</parameter>: the first shape parameter of the distribution</para>
         <para><parameter>b</parameter>: the second scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -17984,7 +17995,7 @@
         <para><parameter>n</parameter>: the number of trials</para>
         <para><parameter>psuc</parameter>: the probability of success in each trial</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18020,7 +18031,7 @@
         <para><parameter>location</parameter>: the center of the distribution</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18055,7 +18066,7 @@
         <para><parameter>x</parameter>: observation</para>
         <para><parameter>df</parameter>: the number of degrees of freedom of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18094,7 +18105,7 @@
         <para><parameter>x</parameter>: observation</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18130,7 +18141,7 @@
         <para><parameter>n1</parameter>: the first number of degrees of freedom of the distribution</para>
         <para><parameter>n2</parameter>: the second number of degrees of freedom of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18166,7 +18177,7 @@
         <para><parameter>shape</parameter>: the shape parameter of the distribution</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18201,7 +18212,7 @@
         <para><parameter>x</parameter>: observation</para>
         <para><parameter>psuc</parameter>: the probability of success in each trial</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18238,7 +18249,7 @@
         <para><parameter>b</parameter>: the number of black balls</para>
         <para><parameter>n</parameter>: the number of balls drawn</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18274,7 +18285,7 @@
         <para><parameter>logmean</parameter>: mean of the underlying normal distribution</para>
         <para><parameter>logsd</parameter>: standard deviation of the underlying normal distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18306,11 +18317,11 @@
       </refsynopsisdiv>
       <refsect1>
         <title>Arguments</title>
-        <para><parameter>x</parameter>: observation</para>
-        <para><parameter>n</parameter>: the number of trials</para>
+        <para><parameter>x</parameter>: observation (number of failures)</para>
+        <para><parameter>n</parameter>: required number of successes</para>
         <para><parameter>psuc</parameter>: the probability of success in each trial</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18346,7 +18357,7 @@
         <para><parameter>mu</parameter>: mean of the distribution</para>
         <para><parameter>sigma</parameter>: standard deviation of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18381,7 +18392,7 @@
         <para><parameter>x</parameter>: observation</para>
         <para><parameter>lambda</parameter>: the mean of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18418,7 +18429,7 @@
         <para><parameter>location</parameter>: the location parameter of the distribution</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18454,7 +18465,7 @@
         <para><parameter>n</parameter>: the number of degrees of freedom of the distribution</para>
         <para><parameter>shape</parameter>: the shape parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18489,7 +18500,7 @@
         <para><parameter>x</parameter>: observation</para>
         <para><parameter>n</parameter>: the number of degrees of freedom of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18526,7 +18537,7 @@
         <para><parameter>df</parameter>: the number of degrees of freedom of the distribution</para>
         <para><parameter>nranges</parameter>: the number of ranges; default is 1</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18561,7 +18572,7 @@
         <para><parameter>shape</parameter>: the shape parameter of the distribution</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, log of the probability is used</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18597,7 +18608,7 @@
         <para><parameter>a</parameter>: the first shape parameter of the distribution</para>
         <para><parameter>b</parameter>: the second scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18633,7 +18644,7 @@
         <para><parameter>n</parameter>: the number of trials</para>
         <para><parameter>psuc</parameter>: the probability of success in each trial</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18669,7 +18680,7 @@
         <para><parameter>location</parameter>: the center of the distribution</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18704,7 +18715,7 @@
         <para><parameter>p</parameter>: probability or natural logarithm of the probability</para>
         <para><parameter>df</parameter>: the number of degrees of freedom of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18743,7 +18754,7 @@
         <para><parameter>p</parameter>: probability or natural logarithm of the probability</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18779,7 +18790,7 @@
         <para><parameter>n1</parameter>: the first number of degrees of freedom of the distribution</para>
         <para><parameter>n2</parameter>: the second number of degrees of freedom of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18815,7 +18826,7 @@
         <para><parameter>shape</parameter>: the shape parameter of the distribution</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18850,7 +18861,7 @@
         <para><parameter>p</parameter>: probability or natural logarithm of the probability</para>
         <para><parameter>psuc</parameter>: the probability of success in each trial</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18887,7 +18898,7 @@
         <para><parameter>b</parameter>: the number of black balls</para>
         <para><parameter>n</parameter>: the number of balls drawn</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18923,7 +18934,7 @@
         <para><parameter>logmean</parameter>: mean of the underlying normal distribution</para>
         <para><parameter>logsd</parameter>: standard deviation of the underlying normal distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18956,10 +18967,10 @@
       <refsect1>
         <title>Arguments</title>
         <para><parameter>p</parameter>: probability or natural logarithm of the probability</para>
-        <para><parameter>n</parameter>: the number of trials</para>
+        <para><parameter>n</parameter>: required number of successes</para>
         <para><parameter>psuc</parameter>: the probability of success in each trial</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -18995,7 +19006,7 @@
         <para><parameter>mu</parameter>: mean of the distribution</para>
         <para><parameter>sigma</parameter>: standard deviation of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -19030,7 +19041,7 @@
         <para><parameter>p</parameter>: probability or natural logarithm of the probability</para>
         <para><parameter>lambda</parameter>: the mean of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -19067,7 +19078,7 @@
         <para><parameter>location</parameter>: the location parameter of the distribution</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -19103,7 +19114,7 @@
         <para><parameter>n</parameter>: the number of degrees of freedom of the distribution</para>
         <para><parameter>shape</parameter>: the shape parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -19138,7 +19149,7 @@
         <para><parameter>p</parameter>: probability or natural logarithm of the probability</para>
         <para><parameter>n</parameter>: the number of degrees of freedom of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -19175,7 +19186,7 @@
         <para><parameter>df</parameter>: the number of degrees of freedom of the distribution</para>
         <para><parameter>nranges</parameter>: the number of ranges; default is 1</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -19210,7 +19221,7 @@
         <para><parameter>shape</parameter>: the shape parameter of the distribution</para>
         <para><parameter>scale</parameter>: the scale parameter of the distribution</para>
         <para><parameter>lower_tail</parameter>: if true (the default), the lower tail of the distribution 
is considered</para>
-        <para><parameter>log_p</parameter>: if true, <parameter>p</parameter> is the natural logarithm of 
the probability; defaults to false</para>
+        <para><parameter>log_p</parameter>: if true, the natural logarithm of the probability is given or 
returned; defaults to false</para>
       </refsect1>
       <refsect1>
         <title>Description</title>
@@ -20016,7 +20027,7 @@
       </refsect1>
       <refsect1>
         <title>Description</title>
-        <para>This functions returns the non-negative value x such that the area under the Student t density 
with <parameter>dof</parameter> degrees of freedom to the right of x is <parameter>p</parameter>/2.</para>
+        <para>This function returns the non-negative value x such that the area under the Student t density 
with <parameter>dof</parameter> degrees of freedom to the right of x is <parameter>p</parameter>/2.</para>
       </refsect1>
       <refsect1>
         <title>Note</title>
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 7a29537..a85d7ca 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/doc/de/ChangeLog b/doc/de/ChangeLog
index 2f05801..9fa5aca 100644
--- a/doc/de/ChangeLog
+++ b/doc/de/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/applix/ChangeLog b/plugins/applix/ChangeLog
index 6d7643c..96fde6f 100644
--- a/plugins/applix/ChangeLog
+++ b/plugins/applix/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/dif/ChangeLog b/plugins/dif/ChangeLog
index 1e14cf5..2dd1b1a 100644
--- a/plugins/dif/ChangeLog
+++ b/plugins/dif/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/excel/ChangeLog b/plugins/excel/ChangeLog
index c9b7349..b913b0e 100644
--- a/plugins/excel/ChangeLog
+++ b/plugins/excel/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-07-09  Andreas J. Guelzow <aguelzow pyrshep ca>
 
        * ms-excel-read.c (excel_read_HLINK): check for NULL data
diff --git a/plugins/excelplugins/ChangeLog b/plugins/excelplugins/ChangeLog
index 9e4d24a..a2a3220 100644
--- a/plugins/excelplugins/ChangeLog
+++ b/plugins/excelplugins/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-christian-date/ChangeLog b/plugins/fn-christian-date/ChangeLog
index 23fd4a9..424bf2d 100644
--- a/plugins/fn-christian-date/ChangeLog
+++ b/plugins/fn-christian-date/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-complex/ChangeLog b/plugins/fn-complex/ChangeLog
index ba6d9fd..604ef3a 100644
--- a/plugins/fn-complex/ChangeLog
+++ b/plugins/fn-complex/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-database/ChangeLog b/plugins/fn-database/ChangeLog
index c79491d..43c60f9 100644
--- a/plugins/fn-database/ChangeLog
+++ b/plugins/fn-database/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-date/ChangeLog b/plugins/fn-date/ChangeLog
index 0478797..15424e6 100644
--- a/plugins/fn-date/ChangeLog
+++ b/plugins/fn-date/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-derivatives/ChangeLog b/plugins/fn-derivatives/ChangeLog
index 2c5087d..f52122f 100644
--- a/plugins/fn-derivatives/ChangeLog
+++ b/plugins/fn-derivatives/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-eng/ChangeLog b/plugins/fn-eng/ChangeLog
index 773528c..0aa572a 100644
--- a/plugins/fn-eng/ChangeLog
+++ b/plugins/fn-eng/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder  <terra gnome org>
 
        * functions.c (gnumeric_erf): Fix accuracy for 2-argument version.
diff --git a/plugins/fn-erlang/ChangeLog b/plugins/fn-erlang/ChangeLog
index d530a96..3558daa 100644
--- a/plugins/fn-erlang/ChangeLog
+++ b/plugins/fn-erlang/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-financial/ChangeLog b/plugins/fn-financial/ChangeLog
index dde8a70..ad81453 100644
--- a/plugins/fn-financial/ChangeLog
+++ b/plugins/fn-financial/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-hebrew-date/ChangeLog b/plugins/fn-hebrew-date/ChangeLog
index 962d868..cb21b63 100644
--- a/plugins/fn-hebrew-date/ChangeLog
+++ b/plugins/fn-hebrew-date/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-info/ChangeLog b/plugins/fn-info/ChangeLog
index 36ef0a0..29cd541 100644
--- a/plugins/fn-info/ChangeLog
+++ b/plugins/fn-info/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-logical/ChangeLog b/plugins/fn-logical/ChangeLog
index f80143d..842b2bd 100644
--- a/plugins/fn-logical/ChangeLog
+++ b/plugins/fn-logical/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-lookup/ChangeLog b/plugins/fn-lookup/ChangeLog
index 685df12..d9ad593 100644
--- a/plugins/fn-lookup/ChangeLog
+++ b/plugins/fn-lookup/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-math/ChangeLog b/plugins/fn-math/ChangeLog
index 1629612..dde5f4a 100644
--- a/plugins/fn-math/ChangeLog
+++ b/plugins/fn-math/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-numtheory/ChangeLog b/plugins/fn-numtheory/ChangeLog
index 8e2ca79..1cd8cdf 100644
--- a/plugins/fn-numtheory/ChangeLog
+++ b/plugins/fn-numtheory/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-numtheory/doc/ChangeLog b/plugins/fn-numtheory/doc/ChangeLog
index ba0536d..d6ea868 100644
--- a/plugins/fn-numtheory/doc/ChangeLog
+++ b/plugins/fn-numtheory/doc/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-r/ChangeLog b/plugins/fn-r/ChangeLog
index 76d2e4b..ea9895b 100644
--- a/plugins/fn-r/ChangeLog
+++ b/plugins/fn-r/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-28  Andreas J. Guelzow <aguelzow pyrshep ca>
 
        * generate: move the previous documentation changes here
diff --git a/plugins/fn-random/ChangeLog b/plugins/fn-random/ChangeLog
index b1135aa..e2d3b6a 100644
--- a/plugins/fn-random/ChangeLog
+++ b/plugins/fn-random/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-stat/ChangeLog b/plugins/fn-stat/ChangeLog
index f0ecc0c..1a93756 100644
--- a/plugins/fn-stat/ChangeLog
+++ b/plugins/fn-stat/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-07-01  Andreas J. Guelzow <aguelzow pyrshep ca>
 
        * functions.c (help_negbinomdist): fix typo
diff --git a/plugins/fn-string/ChangeLog b/plugins/fn-string/ChangeLog
index c09b307..a792d24 100644
--- a/plugins/fn-string/ChangeLog
+++ b/plugins/fn-string/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/fn-tsa/ChangeLog b/plugins/fn-tsa/ChangeLog
index da2f745..1702731 100644
--- a/plugins/fn-tsa/ChangeLog
+++ b/plugins/fn-tsa/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/gda/ChangeLog b/plugins/gda/ChangeLog
index 175ce1d..6799714 100644
--- a/plugins/gda/ChangeLog
+++ b/plugins/gda/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/glpk/ChangeLog b/plugins/glpk/ChangeLog
index 9ac44a8..f1988cf 100644
--- a/plugins/glpk/ChangeLog
+++ b/plugins/glpk/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/gnome-db/ChangeLog b/plugins/gnome-db/ChangeLog
index 9d1dca6..27ab129 100644
--- a/plugins/gnome-db/ChangeLog
+++ b/plugins/gnome-db/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/gnome-glossary/ChangeLog b/plugins/gnome-glossary/ChangeLog
index a3fb1b4..2957ee1 100644
--- a/plugins/gnome-glossary/ChangeLog
+++ b/plugins/gnome-glossary/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/guile/ChangeLog b/plugins/guile/ChangeLog
index b9f94a8..b9b11f5 100644
--- a/plugins/guile/ChangeLog
+++ b/plugins/guile/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/html/ChangeLog b/plugins/html/ChangeLog
index 671c021..1fc4e0a 100644
--- a/plugins/html/ChangeLog
+++ b/plugins/html/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-27  Andreas J. Guelzow <aguelzow pyrshep ca>
 
        * html_read.c (html_read_content): skip empty tables
diff --git a/plugins/lotus-123/ChangeLog b/plugins/lotus-123/ChangeLog
index 6974e7f..d253a27 100644
--- a/plugins/lotus-123/ChangeLog
+++ b/plugins/lotus-123/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/lpsolve/ChangeLog b/plugins/lpsolve/ChangeLog
index bd38117..b9d2032 100644
--- a/plugins/lpsolve/ChangeLog
+++ b/plugins/lpsolve/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/mps/ChangeLog b/plugins/mps/ChangeLog
index 27a7257..b98d716 100644
--- a/plugins/mps/ChangeLog
+++ b/plugins/mps/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/nlsolve/ChangeLog b/plugins/nlsolve/ChangeLog
index d8ca15e..ad1b0c4 100644
--- a/plugins/nlsolve/ChangeLog
+++ b/plugins/nlsolve/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/oleo/ChangeLog b/plugins/oleo/ChangeLog
index 731a34e..5109210 100644
--- a/plugins/oleo/ChangeLog
+++ b/plugins/oleo/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/openoffice/ChangeLog b/plugins/openoffice/ChangeLog
index 2adc25c..7b854a3 100644
--- a/plugins/openoffice/ChangeLog
+++ b/plugins/openoffice/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-07-10  Andreas J. Guelzow <aguelzow pyrshep ca>
 
        * openoffice-write.c (BORDERSTYLE): check for NULL border
diff --git a/plugins/paradox/ChangeLog b/plugins/paradox/ChangeLog
index 4d71112..5e890ff 100644
--- a/plugins/paradox/ChangeLog
+++ b/plugins/paradox/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/perl-func/ChangeLog b/plugins/perl-func/ChangeLog
index 50fe74d..d71ee6e 100644
--- a/plugins/perl-func/ChangeLog
+++ b/plugins/perl-func/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/perl-loader/ChangeLog b/plugins/perl-loader/ChangeLog
index f1e652a..a075375 100644
--- a/plugins/perl-loader/ChangeLog
+++ b/plugins/perl-loader/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/plan-perfect/ChangeLog b/plugins/plan-perfect/ChangeLog
index 954b680..119de71 100644
--- a/plugins/plan-perfect/ChangeLog
+++ b/plugins/plan-perfect/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/psiconv/ChangeLog b/plugins/psiconv/ChangeLog
index 2592b49..8d2ff2a 100644
--- a/plugins/psiconv/ChangeLog
+++ b/plugins/psiconv/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/py-func/ChangeLog b/plugins/py-func/ChangeLog
index 8733e7c..7723152 100644
--- a/plugins/py-func/ChangeLog
+++ b/plugins/py-func/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/python-loader/ChangeLog b/plugins/python-loader/ChangeLog
index 2fe4eb6..dcb8bfa 100644
--- a/plugins/python-loader/ChangeLog
+++ b/plugins/python-loader/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/qpro/ChangeLog b/plugins/qpro/ChangeLog
index 17b5dc5..9a867d9 100644
--- a/plugins/qpro/ChangeLog
+++ b/plugins/qpro/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/sample_datasource/ChangeLog b/plugins/sample_datasource/ChangeLog
index 3e820a0..84a866d 100644
--- a/plugins/sample_datasource/ChangeLog
+++ b/plugins/sample_datasource/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/sc/ChangeLog b/plugins/sc/ChangeLog
index dfc5292..b47d150 100644
--- a/plugins/sc/ChangeLog
+++ b/plugins/sc/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/sylk/ChangeLog b/plugins/sylk/ChangeLog
index 2727f81..6e2eebc 100644
--- a/plugins/sylk/ChangeLog
+++ b/plugins/sylk/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/uihello/ChangeLog b/plugins/uihello/ChangeLog
index 58d0867..ea28407 100644
--- a/plugins/uihello/ChangeLog
+++ b/plugins/uihello/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/plugins/xbase/ChangeLog b/plugins/xbase/ChangeLog
index a7d32e0..e052fc8 100644
--- a/plugins/xbase/ChangeLog
+++ b/plugins/xbase/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/po-functions/ChangeLog b/po-functions/ChangeLog
index 790071d..9ad2457 100644
--- a/po-functions/ChangeLog
+++ b/po-functions/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/po/ChangeLog b/po/ChangeLog
index 2f49d47..e212971 100644
--- a/po/ChangeLog
+++ b/po/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/src/dialogs/ChangeLog b/src/dialogs/ChangeLog
index 111bcf1..fa87c36 100644
--- a/src/dialogs/ChangeLog
+++ b/src/dialogs/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/src/tools/ChangeLog b/src/tools/ChangeLog
index 4158935..7101c69 100644
--- a/src/tools/ChangeLog
+++ b/src/tools/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-07-03  Morten Welinder  <terra gnome org>
 
        * dao.c (dao_set_format): Ignore invalid format, likely due to
diff --git a/src/widgets/ChangeLog b/src/widgets/ChangeLog
index 5a7e63b..7f521d5 100644
--- a/src/widgets/ChangeLog
+++ b/src/widgets/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/test/ChangeLog b/test/ChangeLog
index d8f7edb..522c47c 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/tools/ChangeLog b/tools/ChangeLog
index e40f48d..e3898ce 100644
--- a/tools/ChangeLog
+++ b/tools/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3
diff --git a/tools/win32/ChangeLog b/tools/win32/ChangeLog
index 99a555e..c6515a4 100644
--- a/tools/win32/ChangeLog
+++ b/tools/win32/ChangeLog
@@ -1,3 +1,7 @@
+2013-07-10  Morten Welinder <terra gnome org>
+
+       * Release 1.12.4
+
 2013-06-25  Morten Welinder <terra gnome org>
 
        * Release 1.12.3


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