[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[q2c 01/12] SET: Warn for more obsolete subcommands.
From: |
Ben Pfaff |
Subject: |
[q2c 01/12] SET: Warn for more obsolete subcommands. |
Date: |
Sat, 5 Nov 2011 20:11:23 -0700 |
---
src/language/utilities/set.q | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/language/utilities/set.q b/src/language/utilities/set.q
index bb52fe3..ea040cb 100644
--- a/src/language/utilities/set.q
+++ b/src/language/utilities/set.q
@@ -178,8 +178,12 @@ cmd_set (struct lexer *lexer, struct dataset *ds)
msg (SW, _("%s is obsolete."), "BLOCK");
if (cmd.sbc_boxstring)
msg (SW, _("%s is obsolete."), "BOXSTRING");
+ if (cmd.sbc_cpi)
+ msg (SW, _("%s is obsolete."), "CPI");
if (cmd.sbc_histogram)
msg (SW, _("%s is obsolete."), "HISTOGRAM");
+ if (cmd.sbc_lpi)
+ msg (SW, _("%s is obsolete."), "LPI");
if (cmd.sbc_menus)
msg (SW, _("%s is obsolete."), "MENUS");
if (cmd.sbc_xsort)
--
1.7.2.5
- [q2c 00/12] Fix i18n problems in q2c-generated strings, Ben Pfaff, 2011/11/05
- [q2c 01/12] SET: Warn for more obsolete subcommands.,
Ben Pfaff <=
- [q2c 04/12] LOOP: Correctly implement MXLOOPS and add a test., Ben Pfaff, 2011/11/05
- [q2c 03/12] settings: Implement MXLOOPS subcommand., Ben Pfaff, 2011/11/05
- [q2c 09/12] lexer: New function lex_force_string_or_id()., Ben Pfaff, 2011/11/05
- [q2c 08/12] lexer: New functions lex_spec_missing(), lex_spec_only_once()., Ben Pfaff, 2011/11/05
- [q2c 07/12] lexer: Use error helper functions in more situations., Ben Pfaff, 2011/11/06
- [q2c 12/12] q2c: Remove gettext.h #include from generated code., Ben Pfaff, 2011/11/06
- [q2c 02/12] settings: Update default MXLOOPS and document., Ben Pfaff, 2011/11/06
- [q2c 06/12] lexer: Drop lexer parameter from lex_sbc_missing()., Ben Pfaff, 2011/11/06
- [q2c 11/12] q2c: Remove final untranslated strings from q2c.c., Ben Pfaff, 2011/11/06
- [q2c 10/12] q2c: Use new subc_list_error() to report too many subcommands., Ben Pfaff, 2011/11/06