X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fapply-dict.c;h=ccfecb9eea5be63ef5617b09c52fcf3dac0d1da9;hb=053e7ff6e0a45a25d5604b211e9c950fff50e75d;hp=473daf0148981f3c8367b813071b1ad645063a94;hpb=cc56bd9dc9ecf718111aaf16022f0fe8883a5487;p=pspp-builds.git diff --git a/src/apply-dict.c b/src/apply-dict.c index 473daf01..ccfecb9e 100644 --- a/src/apply-dict.c +++ b/src/apply-dict.c @@ -19,13 +19,13 @@ #include #include +#include "any-reader.h" #include "command.h" #include "dictionary.h" #include "error.h" #include "file-handle.h" #include "hash.h" #include "lexer.h" -#include "sfm-read.h" #include "str.h" #include "value-labels.h" #include "var.h" @@ -40,7 +40,7 @@ int cmd_apply_dictionary (void) { struct file_handle *handle; - struct sfm_reader *reader; + struct any_reader *reader; struct dictionary *dict; int n_matched = 0; @@ -49,14 +49,14 @@ cmd_apply_dictionary (void) lex_match_id ("FROM"); lex_match ('='); - handle = fh_parse (); + handle = fh_parse (FH_REF_FILE | FH_REF_SCRATCH); if (!handle) return CMD_FAILURE; - reader = sfm_open_reader (handle, &dict, NULL); + reader = any_reader_open (handle, &dict); if (dict == NULL) return CMD_FAILURE; - sfm_close_reader (reader); + any_reader_close (reader); for (i = 0; i < dict_get_var_cnt (dict); i++) { @@ -163,7 +163,7 @@ cmd_apply_dictionary (void) dict_set_weight (default_dict, new_weight); } - sfm_close_reader (reader); + any_reader_close (reader); return lex_end_of_command (); }