X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Frepeat.c;h=bf89fedecd50f0b5e131ed3c2141d814e59fa5f1;hb=0280721550011ce14d0632f547746ea03e966bf7;hp=09809fde1e5414d9043158cf898e2ff50d349203;hpb=3a7fba81ceae5b049d0f7d671e9e3c3c43bbf703;p=pspp diff --git a/src/repeat.c b/src/repeat.c index 09809fde1e..bf89fedecd 100644 --- a/src/repeat.c +++ b/src/repeat.c @@ -24,7 +24,6 @@ #include #include #include "alloc.h" -#include "cases.h" #include "command.h" #include "error.h" #include "getline.h" @@ -329,14 +328,7 @@ internal_cmd_do_repeat (void) { /* Note that if the variable already exists there is no harm done. */ - struct variable *v = dict_create_var (default_dict, - iter->replacement[i], - 0); - - /* If we created the variable then we need to initialize - its observations to SYSMIS. */ - if (v) - envector (v); + dict_create_var (default_dict, iter->replacement[i], 0); } } }