pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] pspp/src/ui/gui ChangeLog compute-dialog.c


From: John Darrington
Subject: [Pspp-cvs] pspp/src/ui/gui ChangeLog compute-dialog.c
Date: Fri, 23 Nov 2007 05:39:53 +0000

CVSROOT:        /sources/pspp
Module name:    pspp
Changes by:     John Darrington <jmd>   07/11/23 05:39:53

Modified files:
        src/ui/gui     : ChangeLog compute-dialog.c 

Log message:
        Appended "EXECUTE." to the end of syntax generated by the compute 
dialog.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/ui/gui/ChangeLog?cvsroot=pspp&r1=1.95&r2=1.96
http://cvs.savannah.gnu.org/viewcvs/pspp/src/ui/gui/compute-dialog.c?cvsroot=pspp&r1=1.11&r2=1.12

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/pspp/pspp/src/ui/gui/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -b -r1.95 -r1.96
--- ChangeLog   19 Oct 2007 05:51:13 -0000      1.95
+++ ChangeLog   23 Nov 2007 05:39:53 -0000      1.96
@@ -1,3 +1,8 @@
+2007-11-23  John Darrington <address@hidden>
+
+       * compute-dialog.c (generate_syntax): Append "EXECUTE." to the 
+       generated syntax.
+
 2007-10-19  John Darrington <address@hidden>
 
         * psppire-acr.c psppire-acr.h (new files): Added this new

Index: compute-dialog.c
===================================================================
RCS file: /sources/pspp/pspp/src/ui/gui/compute-dialog.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- compute-dialog.c    7 Oct 2007 00:25:03 -0000       1.11
+++ compute-dialog.c    23 Nov 2007 05:39:53 -0000      1.12
@@ -199,11 +199,13 @@
                            target_name,
                            label);
 
-  g_string_append_printf (string, "COMPUTE %s = %s.",
+  g_string_append_printf (string, "COMPUTE %s = %s.\n",
                          target_name,
                          expression
                          );
 
+  g_string_append (string, "EXECUTE.\n");
+
   text = string->str;
 
   g_string_free (string, FALSE);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]