Commit 4c021dad authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

port spell fixes to source code

parent 4251c70e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -489,7 +489,7 @@ Self-explanatory.

E: KSpace accuracy too large to estimate G vector

Reduce the accuracy request or specify gwald explicitly
Reduce the accuracy request or specify gewald explicitly
via the kspace_modify command.

E: Could not compute grid size for Coulomb interaction
+2 −2
Original line number Diff line number Diff line
@@ -429,14 +429,14 @@ char *Input::nextword(char *str, char **next)
    start += 3;
    *next = stop+3;
    if (**next && !isspace(**next))
      error->all(FLERR,"Input line quote not followed by whitespace");
      error->all(FLERR,"Input line quote not followed by white-space");
  } else if (*start == '"' || *start == '\'') {
    stop = strchr(&start[1],*start);
    if (!stop) error->all(FLERR,"Unbalanced quotes in input line");
    start++;
    *next = stop+1;
    if (**next && !isspace(**next))
      error->all(FLERR,"Input line quote not followed by whitespace");
      error->all(FLERR,"Input line quote not followed by white-space");
  } else {
    stop = &start[strcspn(start," \t\n\v\f\r")];
    if (*stop == '\0') *next = stop;
+2 −2
Original line number Diff line number Diff line
@@ -173,9 +173,9 @@ E: Unbalanced quotes in input line
No matching end double quote was found following a leading double
quote.

E: Input line quote not followed by whitespace
E: Input line quote not followed by white-space

An end quote must be followed by whitespace.
An end quote must be followed by white-space.

E: Invalid variable name

+1 −1

File changed.

Contains only whitespace changes.