+2007-11-23 John Darrington <john@darrington.wattle.id.au>
+
+ * compute-dialog.c (generate_syntax): Append "EXECUTE." to the
+ generated syntax.
+
2007-10-19 John Darrington <john@darrington.wattle.id.au>
* psppire-acr.c psppire-acr.h (new files): Added this new
string = g_string_sized_new (64);
- if ( cd-> use_type &&
+ if ( cd-> use_type &&
NULL == psppire_dict_lookup_var (cd->dict, target_name ))
{
if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (string_toggle)))
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);