Replace syntactical keywords in error/warning messages by printf directives.
[pspp] / src / language / control / do-if.c
index a44f6e81896f2efb528eeb6c01e20f944c62f4d0..6b6dc16d4de600362035e9d39c35afa1f0e5e456 100644 (file)
@@ -174,7 +174,7 @@ must_not_have_else (struct do_if_trns *do_if)
 {
   if (has_else (do_if))
     {
-      msg (SE, _("This command may not follow ELSE in DO IF...END IF."));
+      msg (SE, _("This command may not follow %s in %s ... %s."), "ELSE", "DO IF", "END IF");
       return false;
     }
   else