From: John Darrington Date: Sun, 26 Apr 2020 12:25:34 +0000 (+0200) Subject: Correct syntax when generating code for autorecode with blanks as missing X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c59b7647586c806fb5bd6012dcc5624868c707d;p=pspp Correct syntax when generating code for autorecode with blanks as missing --- diff --git a/src/ui/gui/psppire-dialog-action-autorecode.c b/src/ui/gui/psppire-dialog-action-autorecode.c index ef3d4d77db..7389976a3c 100644 --- a/src/ui/gui/psppire-dialog-action-autorecode.c +++ b/src/ui/gui/psppire-dialog-action-autorecode.c @@ -149,7 +149,7 @@ generate_syntax (const PsppireDialogAction *act) g_string_append (string, "\n\t/GROUP"); if ( gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (rd->blank))) - g_string_append (string, "\n\t/BLANK"); + g_string_append (string, "\n\t/BLANK = MISSING"); g_string_append (string, ".\n");