Function: artist-toggle-borderless-shapes
artist-toggle-borderless-shapes is an interactive and byte-compiled
function defined in artist.el.gz.
Signature
(artist-toggle-borderless-shapes &optional STATE)
Documentation
Toggle borders of shapes.
If optional argument STATE is positive, turn borders on.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-toggle-borderless-shapes (&optional state)
"Toggle borders of shapes.
If optional argument STATE is positive, turn borders on."
(interactive)
(if (setq artist-borderless-shapes
(if (null state) (not artist-borderless-shapes)
(> (prefix-numeric-value state) 0)))
(message "Borders are now off")
(message "Borders are now on")))