X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdictionary.c;h=2d99f6d72cfe2a7e6dc442102f16a4dc687cbe32;hb=dc29c57e7908b0bdc6ab84f8aa4b7cb8a780026c;hp=4a0afc73d312ab1fac54d061771a1e2cbf174170;hpb=e195fccfab97205acb29f90fd1168488d49f1573;p=pspp diff --git a/src/data/dictionary.c b/src/data/dictionary.c index 4a0afc73d3..2d99f6d72c 100644 --- a/src/data/dictionary.c +++ b/src/data/dictionary.c @@ -87,6 +87,8 @@ struct dictionary static void dict_unset_split_var (struct dictionary *, struct variable *); static void dict_unset_mrset_var (struct dictionary *, struct variable *); +/* Returns the encoding for data in dictionary D. The return value is a + nonnull string that contains an IANA character set name. */ const char * dict_get_encoding (const struct dictionary *d) { @@ -194,8 +196,7 @@ dict_clone (const struct dictionary *s) /* Set the new dictionary's encoding early so that string length limitations are interpreted correctly. */ - if ( s->encoding) - d->encoding = xstrdup (s->encoding); + d->encoding = xstrdup (s->encoding); for (i = 0; i < s->var_cnt; i++) {