Remove obsolete comments.
authorJohn Darrington <john@darrington.wattle.id.au>
Sun, 5 Sep 2010 12:12:38 +0000 (14:12 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sun, 5 Sep 2010 12:12:38 +0000 (14:12 +0200)
Value labels are no longer limited to short string
variables.  So these comments are no longer relevant.

src/data/variable.c

index f703722c3f39ec1e02a0691d2b96609fbced4123..707b2813eccb172bdbee017ff92f2bea009ac8f2 100644 (file)
@@ -506,8 +506,8 @@ alloc_value_labels (struct variable *v)
 }
 
 /* Attempts to add a value label with the given VALUE and LABEL
-   to V.  Returns true if successful, false if VALUE has an
-   existing label or if V is a long string variable. */
+   to V.  Returns true if successful, false otherwise (probably
+   due to an existing label). */
 bool
 var_add_value_label (struct variable *v,
                      const union value *value, const char *label)
@@ -518,7 +518,7 @@ var_add_value_label (struct variable *v,
 
 /* Adds or replaces a value label with the given VALUE and LABEL
    to V.
-   Has no effect if V is a long string variable. */
+*/
 void
 var_replace_value_label (struct variable *v,
                          const union value *value, const char *label)