Function: artist-submit-bug-report
artist-submit-bug-report is an interactive and byte-compiled function
defined in artist.el.gz.
Signature
(artist-submit-bug-report)
Documentation
Submit via mail a bug report on Artist.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
;;
;; Bug-report-submitting
;;
(defun artist-submit-bug-report ()
"Submit via mail a bug report on Artist."
(interactive)
(require 'reporter)
(if (y-or-n-p "Do you want to submit a bug report on Artist? ")
(let ((vars '(window-system
artist-rubber-banding
artist-interface-with-rect
artist-aspect-ratio
;; Now the internal ones
artist-curr-go
artist-key-poly-point-list
artist-key-shape
artist-key-draw-how
artist-arrow-point-1
artist-arrow-point-2)))
;; Remove those variables from vars that are not bound
(mapc
(lambda (x)
(if (not (and (boundp x) (symbol-value x)))
(setq vars (delq x vars)))) vars)
(reporter-submit-bug-report
artist-maintainer-address
(concat "artist.el in Emacs " emacs-version)
vars
nil nil
(concat "Hello Tomas,\n\n"
"I have a nice bug report on Artist for you! Here it is:")))))