From: John Darrington Date: Wed, 15 Nov 2017 06:33:24 +0000 (+0100) Subject: Frequencies Piecharts (gui): Emit 'NOMISSING' when appropriate. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=0f447caa885d8f0fd8c30d4440556d9b6abb99ea Frequencies Piecharts (gui): Emit 'NOMISSING' when appropriate. Fixes bug #52394. --- diff --git a/NEWS b/NEWS index a02b144f4d..e876620021 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,9 @@ Changes from 1.0.1 to 1.1.0: ** The code implementing the sheet rendering has been removed. Instead we use a third party library: spread-sheet-widget. + ** The "NOMISSING" keyword when generating syntax for piecharts in the frequencies + command was omitted. This has been corrected. + Changes from 1.0.0 to 1.0.1: * Bug fixes, including fixes for CVE-2017-12958, CVE-2017-12959, diff --git a/src/ui/gui/psppire-dialog-action-frequencies.c b/src/ui/gui/psppire-dialog-action-frequencies.c index adca915816..c987e5ee90 100644 --- a/src/ui/gui/psppire-dialog-action-frequencies.c +++ b/src/ui/gui/psppire-dialog-action-frequencies.c @@ -454,6 +454,8 @@ generate_syntax (const PsppireDialogAction * a) if (fd->charts_opts_pie_include_missing) ds_put_cstr (&str, " MISSING"); + else + ds_put_cstr (&str, " NOMISSING"); if (fd->charts_opts_use_min) ds_put_c_format (&str, " MIN(%.15g)", fd->charts_opts_min);