Skip to content
Permalink
Browse files

Fix breakage from 58b257f (#1838)

  • Loading branch information...
dstillman committed Mar 6, 2019
1 parent 03bf1dc commit 53102fac9bf8acdefafdff4e1e8d3f8796312880
Showing with 1 addition and 1 deletion.
  1. +1 −1 BibTeX.js
@@ -935,7 +935,7 @@ function beginRecord(type, closeChar) {
return item.complete();
}
return;
} else if (" \n\r\t".includes(read)) { // skip whitespace
} else if (!" \n\r\t".includes(read)) { // skip whitespace
field += read;
}
}

0 comments on commit 53102fa

Please sign in to comment.
You can’t perform that action at this time.