pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src/language command.c ChangeLog


From: Ben Pfaff
Subject: [Pspp-cvs] pspp/src/language command.c ChangeLog
Date: Mon, 16 Oct 2006 02:39:32 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 06/10/16 02:39:32

Modified files:
        src/language   : command.c ChangeLog 

Log message:
                * command.c: (do_parse_command) Issue an error for unimplemented
                commands, instead of silently ignoring them.  Reported by John
                Darrington.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/command.c?cvsroot=pspp&r1=1.15&r2=1.16
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/ChangeLog?cvsroot=pspp&r1=1.9&r2=1.10

Patches:
Index: command.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/command.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- command.c   14 Oct 2006 00:25:20 -0000      1.15
+++ command.c   16 Oct 2006 02:39:32 -0000      1.16
@@ -179,7 +179,10 @@
   if (command == NULL)
     return CMD_FAILURE;
   else if (command->function == NULL)
+    {
+      msg (SE, _("%s is unimplemented."), command->name);
     return CMD_NOT_IMPLEMENTED;
+    }
   else if ((command->flags & F_TESTING) && !get_testing_mode ()) 
     {
       msg (SE, _("%s may be used only in testing mode."), command->name);

Index: ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- ChangeLog   28 Jun 2006 18:40:21 -0000      1.9
+++ ChangeLog   16 Oct 2006 02:39:32 -0000      1.10
@@ -1,3 +1,9 @@
+Sun Oct 15 19:38:55 2006  Ben Pfaff  <address@hidden>
+
+       * command.c: (do_parse_command) Issue an error for unimplemented
+       commands, instead of silently ignoring them.  Reported by John
+       Darrington.
+
 Wed Jun 28 11:38:23 2006  Ben Pfaff  <address@hidden>
 
        Don't offer both the full and abbreviated names for a single




reply via email to

[Prev in Thread] Current Thread [Next in Thread]