Function: artist-select-next-op-in-list

artist-select-next-op-in-list is an interactive and byte-compiled function defined in artist.el.gz.

Signature

(artist-select-next-op-in-list)

Documentation

Cyclically select next drawing mode operation.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-select-next-op-in-list ()
  "Cyclically select next drawing mode operation."
  (interactive)
  (let ((next-op (cdr (cdr (assoc artist-curr-go artist-prev-next-op-alist)))))
    (artist-select-operation next-op)
    (message "%s" next-op)))