Frequencies Piecharts (gui): Emit 'NOMISSING' when appropriate.
authorJohn Darrington <john@darrington.wattle.id.au>
Wed, 15 Nov 2017 06:33:24 +0000 (07:33 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Wed, 15 Nov 2017 06:35:22 +0000 (07:35 +0100)
Fixes bug #52394.

NEWS
src/ui/gui/psppire-dialog-action-frequencies.c

diff --git a/NEWS b/NEWS
index a02b144f4dcadb6cda5439fbb5b75b79878e5316..e8766200217c7914d5753c421329d5feb9b1748c 100644 (file)
--- 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,
index adca915816cd0973edc8599e215aeb6ed6c15058..c987e5ee903b1b5c20162ec64f9de732841f5695 100644 (file)
@@ -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);