[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[pre-lexer 13/21] command: Remove superfluous trailing spaces from comma
From: |
Ben Pfaff |
Subject: |
[pre-lexer 13/21] command: Remove superfluous trailing spaces from command names. |
Date: |
Thu, 23 Sep 2010 21:20:49 -0700 |
These spaces made user messages look a little funny but they were otherwise
harmless.
---
src/language/command.def | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/language/command.def b/src/language/command.def
index 2b00ea2..ccbb462 100644
--- a/src/language/command.def
+++ b/src/language/command.def
@@ -201,10 +201,10 @@ UNIMPL_CMD ("MATRIX DATA", "Matrix data input")
UNIMPL_CMD ("MCONVERT", "Convert covariance/correlation matrices")
UNIMPL_CMD ("MEANS", cmd_means)
UNIMPL_CMD ("MIXED", "Mixed linear models")
-UNIMPL_CMD ("MODEL CLOSE ", "Close server connection")
+UNIMPL_CMD ("MODEL CLOSE", "Close server connection")
UNIMPL_CMD ("MODEL HANDLE", "Define server connection")
-UNIMPL_CMD ("MODEL LIST ", "Show existing models")
-UNIMPL_CMD ("MODEL NAME ", "Specify model label")
+UNIMPL_CMD ("MODEL LIST", "Show existing models")
+UNIMPL_CMD ("MODEL NAME", "Specify model label")
UNIMPL_CMD ("MULTIPLE CORRESPONDENCE", "Multiple correspondence analysis")
UNIMPL_CMD ("MULT RESPONSE", "Multiple reponse analysis")
UNIMPL_CMD ("MVA", "Missing value analysis")
--
1.7.1
- [pre-lexer 00/21] preparation for work on lexer, Ben Pfaff, 2010/09/24
- [pre-lexer 01/21] str: Make ss_alloc_substring() allocate null-terminated strings., Ben Pfaff, 2010/09/24
- [pre-lexer 13/21] command: Remove superfluous trailing spaces from command names.,
Ben Pfaff <=
- [pre-lexer 19/21] data-in: Rewrite logic for recoding input, and get rid of src_enc member., Ben Pfaff, 2010/09/24
- [pre-lexer 03/21] i18n: New function recode_substring_pool()., Ben Pfaff, 2010/09/24
- [pre-lexer 11/21] lexer: Use lex_is_string() more consistently., Ben Pfaff, 2010/09/24
- [pre-lexer 04/21] syntax-string-source: Fix format string problems., Ben Pfaff, 2010/09/24
- [pre-lexer 08/21] Make translation easier., Ben Pfaff, 2010/09/24
- [pre-lexer 14/21] command: Add specific DATASET unimplemented commands., Ben Pfaff, 2010/09/24
- [pre-lexer 12/21] command: Remove INSERT from list of unimplemented commands., Ben Pfaff, 2010/09/24
- [pre-lexer 20/21] data-in: Make data_in() parameters more uniform., Ben Pfaff, 2010/09/24
- [pre-lexer 02/21] i18n: Use UTF8 macro instead of "UTF8" literal string., Ben Pfaff, 2010/09/24
- [pre-lexer 09/21] lexer: Improve translatability of lex_error()., Ben Pfaff, 2010/09/24