Replace syntactical keywords in error/warning messages by printf directives.
[pspp] / src / language / utilities / date.c
index 3b754b4980efa902ce155bc4708ce93c7358242f..8afbe6562d9dc1c8b2fb9ef0345b9d1f91891c41 100644 (file)
@@ -30,6 +30,6 @@ cmd_use (struct lexer *lexer, struct dataset *ds UNUSED)
   if (lex_match (lexer, T_ALL))
     return CMD_SUCCESS;
 
-  msg (SW, _("Only USE ALL is currently implemented."));
+  msg (SW, _("Only %s is currently implemented."), "USE ALL");
   return CMD_FAILURE;
 }