From 1c59b7647586c806fb5bd6012dcc5624868c707d Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 26 Apr 2020 14:25:34 +0200 Subject: [PATCH] Correct syntax when generating code for autorecode with blanks as missing --- src/ui/gui/psppire-dialog-action-autorecode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.30.2