diff options
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-graph.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-graph.el b/lisp/calc/calc-graph.el index 90ed192d0c8..032575048c4 100644 --- a/lisp/calc/calc-graph.el +++ b/lisp/calc/calc-graph.el @@ -391,7 +391,7 @@ (delete-region (match-beginning 0) (match-end 0)) (if (looking-at ",") (delete-char 1) - (while (memq (preceding-char) '(?\ ?\t)) + (while (memq (preceding-char) '(?\s ?\t)) (forward-char -1)) (if (eq (preceding-char) ?\,) (delete-backward-char 1)))) |