aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-02-14 09:57:24 +0000
committerJuanma Barranquero2003-02-14 09:57:24 +0000
commita18cce10ccd28e758d901f77ba3fdb61bb0a56f8 (patch)
tree7911ac40415d5c940cce7e5d09f941adfdb9a42c
parent39c0722f09c3bcf6b776ce0c5d0cb185a259a43f (diff)
downloademacs-a18cce10ccd28e758d901f77ba3fdb61bb0a56f8.tar.gz
emacs-a18cce10ccd28e758d901f77ba3fdb61bb0a56f8.zip
(strokes-read-complex-stroke): Fix use of character constant.
-rw-r--r--lisp/strokes.el2
1 files changed, 1 insertions, 1 deletions
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"
793 (when point 793 (when point
794 (goto-char point) 794 (goto-char point)
795 (subst-char-in-region point (1+ point) 795 (subst-char-in-region point (1+ point)
796 ?\ strokes-character)) 796 ?\ strokes-character))
797 (push (cdr (mouse-pixel-position)) 797 (push (cdr (mouse-pixel-position))
798 pix-locs))) 798 pix-locs)))
799 (setq event (read-event))) 799 (setq event (read-event)))