From: Juanma Barranquero Date: Tue, 18 Feb 2003 10:58:50 +0000 (+0000) Subject: (calc-graph-plot): Fix character constant. X-Git-Tag: ttn-vms-21-2-B4~11151 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9b80830ca255c76ec250f4baf0c5cc9af4fb6659;p=emacs.git (calc-graph-plot): Fix character constant. --- 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))))