From: John Darrington Date: Sun, 5 Sep 2010 12:12:38 +0000 (+0200) Subject: Remove obsolete comments. X-Git-Tag: sav-api~53 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=46e213d759e32e607cc2c04c6feb75809572d0cf Remove obsolete comments. Value labels are no longer limited to short string variables. So these comments are no longer relevant. --- diff --git a/src/data/variable.c b/src/data/variable.c index f703722c3f..707b2813ec 100644 --- a/src/data/variable.c +++ b/src/data/variable.c @@ -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)