Commit 86f5b511 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

recognize any word starting with FP as FPRIME style table

parent ccca642b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -578,7 +578,7 @@ void PairTable::param_extract(Table *tb, char *line)
      tb->rlo = atof(word);
      word = strtok(NULL," \t\n\r\f");
      tb->rhi = atof(word);
    } else if (strcmp(word,"FP") == 0) {
    } else if (strncmp(word,"FP",2) == 0) {
      tb->fpflag = 1;
      word = strtok(NULL," \t\n\r\f");
      tb->fplo = atof(word);