From: Juanma Barranquero Date: Fri, 14 Feb 2003 09:57:24 +0000 (+0000) Subject: (strokes-read-complex-stroke): Fix use of character constant. X-Git-Tag: ttn-vms-21-2-B4~11198 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a18cce10ccd28e758d901f77ba3fdb61bb0a56f8;p=emacs.git (strokes-read-complex-stroke): Fix use of character constant. --- diff --git a/lisp/strokes.el b/lisp/strokes.el index b230bfdeb6b..9b138e0e5dc 100644 --- a/lisp/strokes.el +++ b/lisp/strokes.el @@ -793,7 +793,7 @@ Optional EVENT is acceptable as the starting event of the stroke" (when point (goto-char point) (subst-char-in-region point (1+ point) - ?\ strokes-character)) + ?\ strokes-character)) (push (cdr (mouse-pixel-position)) pix-locs))) (setq event (read-event)))