/[pspp]/pspp/src/vars-atr.c
ViewVC logotype

Diff of /pspp/src/vars-atr.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.18 by blp, Sat Mar 19 22:22:44 2005 UTC revision 1.19 by jmd, Wed Apr 13 10:09:59 2005 UTC
# Line 249  var_is_valid_name (const char *name, boo Line 249  var_is_valid_name (const char *name, boo
249          msg (SE, _("Variable names must be at least 1 character long."));          msg (SE, _("Variable names must be at least 1 character long."));
250        return false;        return false;
251      }      }
252    else if (length > MAX_VAR_NAME_LEN)    else if (length > SHORT_NAME_LEN)
253      {      {
254        if (issue_error)        if (issue_error)
255          msg (SE, _("Variable name %s exceeds %d-character limit."),          msg (SE, _("Variable name %s exceeds %d-character limit."),
256               (int) MAX_VAR_NAME_LEN);               (int) SHORT_NAME_LEN);
257        return false;        return false;
258      }      }
259    

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26