pspp-cvs
[Top][All Lists]
Advanced

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

[Pspp-cvs] Changes to pspp/src/vars-atr.c


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/vars-atr.c
Date: Sun, 31 Jul 2005 02:06:50 -0400

Index: pspp/src/vars-atr.c
diff -u pspp/src/vars-atr.c:1.23 pspp/src/vars-atr.c:1.24
--- pspp/src/vars-atr.c:1.23    Mon May 16 07:33:17 2005
+++ pspp/src/vars-atr.c Sun Jul 31 06:06:50 2005
@@ -263,7 +263,7 @@
     {
       if (issue_error)
         msg (SE, _("Variable name %s exceeds %d-character limit."),
-             (int) LONG_NAME_LEN);
+             name, (int) LONG_NAME_LEN);
       return false;
     }
 
@@ -273,7 +273,7 @@
         if (issue_error)
           msg (SE, _("Character `%c' (in %s) may not appear in "
                      "a variable name."),
-               name);
+               name[i], name);
         return false;
       }
         
@@ -281,7 +281,8 @@
     {
       if (issue_error)
         msg (SE, _("Character `%c' (in %s), may not appear "
-                   "as the first character in a variable name."), name);
+                   "as the first character in a variable name."),
+             name[0], name);
       return false;
     }
 




reply via email to

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