diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:25:02 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:25:02 +0000 |
commit | 8a26c16552f49f7a61e1e338952110b59e5b2664 (patch) | |
tree | 573b8698befa710db88672563a1714bbed3e0f0a /lisp/strokes.el | |
parent | be9bb408d2f2e063cc4606cbaa04912a45719efe (diff) | |
download | emacs-8a26c16552f49f7a61e1e338952110b59e5b2664.tar.gz |
Message format spec fixes (1)
Diffstat (limited to 'lisp/strokes.el')
-rw-r--r-- | lisp/strokes.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/strokes.el b/lisp/strokes.el index a432191b18a..84bff1b6ba0 100644 --- a/lisp/strokes.el +++ b/lisp/strokes.el @@ -738,7 +738,7 @@ Optional EVENT is acceptable as the starting event of the stroke." (save-window-excursion (set-window-configuration strokes-window-configuration) (when prompt - (message prompt) + (message "%s" prompt) (setq event (read-event)) (or (strokes-button-press-event-p event) (error "You must draw with the mouse"))) @@ -769,7 +769,7 @@ Optional EVENT is acceptable as the starting event of the stroke." (bury-buffer)))) ;; Otherwise, don't use strokes buffer and read stroke silently (when prompt - (message prompt) + (message "%s" prompt) (setq event (read-event)) (or (strokes-button-press-event-p event) (error "You must draw with the mouse"))) @@ -799,7 +799,7 @@ Optional EVENT is acceptable as the starting event of the stroke." (grid-locs nil)) (if prompt (while (not (strokes-button-press-event-p event)) - (message prompt) + (message "%s" prompt) (setq event (read-event)))) (unwind-protect (track-mouse |