diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-02-14 09:57:24 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-02-14 09:57:24 +0000 |
commit | a18cce10ccd28e758d901f77ba3fdb61bb0a56f8 (patch) | |
tree | 7911ac40415d5c940cce7e5d09f941adfdb9a42c /lisp/strokes.el | |
parent | 39c0722f09c3bcf6b776ce0c5d0cb185a259a43f (diff) | |
download | emacs-a18cce10ccd28e758d901f77ba3fdb61bb0a56f8.tar.gz |
(strokes-read-complex-stroke): Fix use of character constant.
Diffstat (limited to 'lisp/strokes.el')
-rw-r--r-- | lisp/strokes.el | 2 |
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" (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))) |