From b966a83ffe1ecff6a86342d2faad17a4c1a484e5 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 21 Jul 2014 21:35:07 -0700 Subject: [PATCH] table-paste: Fix comments and variable naming. --- src/output/table-paste.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/output/table-paste.c b/src/output/table-paste.c index ad32de7276..b56760cd1d 100644 --- a/src/output/table-paste.c +++ b/src/output/table-paste.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2009, 2011 Free Software Foundation, Inc. + Copyright (C) 2009, 2011, 2014 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 @@ -182,11 +182,11 @@ table_hpaste (struct table *left, struct table *right) return table_paste (left, right, TABLE_HORZ); } -/* Shorthand for table_paste (left, right, TABLE_VERT). */ +/* Shorthand for table_paste (top, bottom, TABLE_VERT). */ struct table * -table_vpaste (struct table *left, struct table *right) +table_vpaste (struct table *top, struct table *bottom) { - return table_paste (left, right, TABLE_VERT); + return table_paste (top, bottom, TABLE_VERT); } static void -- 2.30.2