X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Frename-vars.c;h=57af1c01023fafee8e49d06323d8e9f0ad2d43d5;hb=c0240125a4702cccce5d4ea1d58d9e7f3d739dff;hp=21b80432cd38ffaa3e59c4514c90544cbd6ca1b8;hpb=14e7292894533c5491a774a2d749386362660812;p=pspp diff --git a/src/rename-vars.c b/src/rename-vars.c index 21b80432cd..57af1c0102 100644 --- a/src/rename-vars.c +++ b/src/rename-vars.c @@ -14,20 +14,24 @@ 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 -#include +#include "error.h" #include "alloc.h" #include "command.h" +#include "dictionary.h" #include "error.h" #include "hash.h" #include "lexer.h" #include "str.h" #include "var.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + /* The code for this function is very similar to the code for the RENAME subcommand of MODIFY VARS. */ int @@ -49,9 +53,6 @@ cmd_rename_variables (void) cancel_temporary (); } - lex_match_id ("RENAME"); - lex_match_id ("VARIABLES"); - do { int prev_nv_1 = rename_cnt;