diff options
Diffstat (limited to 'lisp/textmodes/artist.el')
-rw-r--r-- | lisp/textmodes/artist.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/artist.el b/lisp/textmodes/artist.el index f0442904185..63a9e8f615a 100644 --- a/lisp/textmodes/artist.el +++ b/lisp/textmodes/artist.el @@ -1151,14 +1151,14 @@ PREV-OP-ARG are used when invoked recursively during the build-up." (interactive) (let ((next-op (cdr (cdr (assoc artist-curr-go artist-prev-next-op-alist))))) (artist-select-operation next-op) - (message next-op))) + (message "%s" next-op))) (defun artist-select-prev-op-in-list () "Cyclically select previous drawing mode operation." (interactive) (let ((prev-op (car (cdr (assoc artist-curr-go artist-prev-next-op-alist))))) (artist-select-operation prev-op) - (message prev-op))) + (message "%s" prev-op))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |