short-names: Drop redundant call to var_set_short_name().
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 23 Apr 2011 18:40:42 +0000 (11:40 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 26 Apr 2011 04:13:53 +0000 (21:13 -0700)
This function always calls var_set_short_name() twice, so we can drop
the first call.

src/data/short-names.c

index d1e37f5be06e079c846383dbbd16e70bb360e39f..fbf813a3fda26d8730e8482c84d7e9a6f36fa167 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc.
+   Copyright (C) 2007, 2009, 2010, 2011 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -43,9 +43,6 @@ set_var_short_name_suffix (struct variable *v, size_t i,
 
   assert (suffix_number >= 0);
 
-  /* Set base name. */
-  var_set_short_name (v, i, base);
-
   /* Compose suffix. */
   suffix[0] = '_';
   if (!str_format_26adic (suffix_number, &suffix[1], sizeof suffix - 1))