X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvar-labs.c;h=cbcf984529fe9ce3626a92f653558998e8bfe007;hb=dbb0228a4c98cbf4756ba651fda158c1565b3b55;hp=a62ec95e21fa4d638b9ac0233463b87e1939793a;hpb=92bfefccd465052e492f669ce561aa25b0110283;p=pspp diff --git a/src/var-labs.c b/src/var-labs.c index a62ec95e21..cbcf984529 100644 --- a/src/var-labs.c +++ b/src/var-labs.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include @@ -29,10 +29,6 @@ #include "debug-print.h" -#if DEBUGGING -static void debug_print (void); -#endif - int cmd_variable_labels (void) { @@ -70,27 +66,16 @@ cmd_variable_labels (void) free (v); } while (token != '.'); -#if 0 && DEBUGGING - debug_print (); -#endif return CMD_SUCCESS; } -#if 0 && DEBUGGING -static void -debug_print (void) + + +const char * +var_to_string(const struct variable *var) { - int i; + if ( !var ) + return 0; - printf (_("Variable labels:\n")); - for (i = 0; i < nvar; i++) - { - printf (" %8s: ", var[i]->name); - if (var[i]->label) - printf ("`%s'", var[i]->label); - else - printf (_("(no variable label)")); - printf ("\n"); - } + return ( var->label ? var->label : var->name); } -#endif /* DEBUGGING */