[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Pspp-cvs] pspp/src/language/stats regression.q
From: |
Jason H Stover |
Subject: |
[Pspp-cvs] pspp/src/language/stats regression.q |
Date: |
Fri, 17 Aug 2007 14:10:05 +0000 |
CVSROOT: /sources/pspp
Module name: pspp
Changes by: Jason H Stover <jstover> 07/08/17 14:10:05
Modified files:
src/language/stats: regression.q
Log message:
broke long line in error message
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/stats/regression.q?cvsroot=pspp&r1=1.60&r2=1.61
Patches:
Index: regression.q
===================================================================
RCS file: /sources/pspp/pspp/src/language/stats/regression.q,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -b -r1.60 -r1.61
--- regression.q 16 Aug 2007 15:23:55 -0000 1.60
+++ regression.q 17 Aug 2007 14:10:05 -0000 1.61
@@ -1028,7 +1028,9 @@
as the dependent variable. Print a warning and continue.
*/
msg (SE,
- gettext ("The dependent variable is equal to the independent
variable. The least squares line is therefore Y=X. Standard errors and related
statistics may be meaningless."));
+ gettext ("The dependent variable is equal to the independent
variable."
+ "The least squares line is therefore Y=X."
+ "Standard errors and related statistics may be
meaningless."));
n_indep_vars = 1;
indep_vars[0] = v_variables[0];
}