Function: artist-pen

artist-pen is a byte-compiled function defined in artist.el.gz.

Signature

(artist-pen X1 Y1)

Documentation

Draw a character at X1, Y1.

The character is replaced with the character in artist-fill-char.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;;
;; Pen drawing
;;

(defun artist-pen (x1 y1)
  "Draw a character at X1, Y1.
The character is replaced with the character in `artist-fill-char'."
  (artist-move-to-xy x1 y1)
  (artist-replace-char (if artist-line-char-set
			   artist-line-char
			 (if artist-fill-char-set
			     artist-fill-char
			   artist-default-fill-char))))