Skip to content

Commit

Permalink
Fix for #20 (comment) (#585)
Browse files Browse the repository at this point in the history
  • Loading branch information
brndnmtthws authored and lasers committed Aug 12, 2018
1 parent 9cf71ef commit 4a4ff6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algebra.cc
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ enum arg_type get_arg_type(const char *arg) {
if (p == e + 1) {
return ARG_LONG;
}
if (*p == '.') {
if (*p == '.' || *p == ',') {
p++;
while (p <= e) {
if (isdigit((unsigned char)*p) == 0) {
Expand Down

0 comments on commit 4a4ff6b

Please sign in to comment.