pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] Changes to pspp/src/expressions/parse.c


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/expressions/parse.c
Date: Sun, 31 Jul 2005 02:14:17 -0400

Index: pspp/src/expressions/parse.c
diff -u pspp/src/expressions/parse.c:1.11 pspp/src/expressions/parse.c:1.12
--- pspp/src/expressions/parse.c:1.11   Mon May 16 07:33:17 2005
+++ pspp/src/expressions/parse.c        Sun Jul 31 06:14:17 2005
@@ -1033,7 +1033,7 @@
         {
           assert ((f->flags & OPF_MIN_VALID) == 0);
           msg (SE, _("%s function does not accept a minimum valid "
-                     "argument count."));
+                     "argument count."), f->prototype);
           return false;
         }
       else 
@@ -1042,7 +1042,7 @@
           if (array_arg_cnt < f->array_min_elems)
             {
               msg (SE, _("%s requires at least %d valid arguments in list."),
-                   f->prototype);
+                   f->prototype, f->array_min_elems);
               return false;
             }
           else if (min_valid > array_arg_cnt) 




reply via email to

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