Changed a few instances of SHORT_NAME_LEN to LONG_NAME_LEN
authorJohn Darrington <john@darrington.wattle.id.au>
Wed, 27 Apr 2005 04:45:26 +0000 (04:45 +0000)
committerJohn Darrington <john@darrington.wattle.id.au>
Wed, 27 Apr 2005 04:45:26 +0000 (04:45 +0000)
src/ChangeLog
src/loop.c
src/recode.c
src/repeat.c

index 4f65c2f99315861df46858190c25a3fdd25063bf..1a9d2659eb7057a9b9bc44925dbce8b188bdbb5d 100644 (file)
@@ -1,3 +1,8 @@
+Wed Apr 27 12:42:34 WST 2005 John Darrington <john@darrington.wattle.id.au>
+
+       * loop.c recode.c repeat.c: Fixed a couple of instances of SHORT_NAME_LEN 
+       which should be LONG_NAME_LEN
+
 Wed Apr 27 07:43:50 WST 2005 John Darrington <john@darrington.wattle.id.au>
 
        * command.def echo.c:  Added the ECHO command.
index bfe04d11c432240735453e1d6226ebb346a9f75f..7a2cc775a650f059aec8c104198e04fbb518d6e9 100644 (file)
@@ -166,7 +166,7 @@ static int
 internal_cmd_loop (void)
 {
   /* Name of indexing variable if applicable. */
-  char name[SHORT_NAME_LEN + 1];
+  char name[LONG_NAME_LEN + 1];
 
   /* Create and initialize transformations to facilitate
      error-handling. */
index 36bb590e51634a5c84b6b6db7e636453f8494253..f4f7bffa76d68bbec369404bc76cd6cccc597a40 100644 (file)
@@ -66,7 +66,7 @@ struct rcd_var
 
     struct variable *src;      /* Source variable. */
     struct variable *dest;     /* Destination variable. */
-    char dest_name[SHORT_NAME_LEN + 1];                /* Name of dest variable if we're creating it. */
+    char dest_name[LONG_NAME_LEN + 1];         /* Name of dest variable if we're creating it. */
 
     int has_sysmis;            /* Do we recode for SYSMIS? */
     union value sysmis;                /* Coding for SYSMIS (if src is numeric). */
index 42467096808b98d9a6891584c383b41eb65ce6da..b95dbc00c62725ff44ffcc5ac0b10c26c0a94d16 100644 (file)
@@ -40,7 +40,7 @@
 struct repeat_entry
   {
     int type;                  /* 1=variable names, 0=any other. */
-    char id[SHORT_NAME_LEN + 1];       /* Macro identifier. */
+    char id[LONG_NAME_LEN + 1];        /* Macro identifier. */
     char **replacement;                /* Macro replacement. */
     struct repeat_entry *next;
   };
@@ -125,7 +125,7 @@ static int
 internal_cmd_do_repeat (void)
 {
   /* Name of first DO REPEAT macro. */
-  char first_name[SHORT_NAME_LEN + 1];
+  char first_name[LONG_NAME_LEN + 1];
 
   /* Current filename. */
   const char *current_filename = NULL;
@@ -553,12 +553,12 @@ perform_DO_REPEAT_substitutions (void)
 
       /* Collect an identifier. */
       {
-       char name[SHORT_NAME_LEN + 1];
+       char name[LONG_NAME_LEN + 1];
        char *start = cp;
        char *np = name;
        char *substitution;
 
-       while (CHAR_IS_IDN (*cp) && np < &name[SHORT_NAME_LEN])
+       while (CHAR_IS_IDN (*cp) && np < &name[LONG_NAME_LEN])
          *np++ = *cp++;
        while (CHAR_IS_IDN (*cp))
          cp++;