Function: artist-string-to-file

artist-string-to-file is a byte-compiled function defined in artist.el.gz.

Signature

(artist-string-to-file STR FILE-NAME)

Documentation

Write string STR to file FILE-NAME.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/artist.el.gz
(defun artist-string-to-file (str file-name)
  "Write string STR to file FILE-NAME."
  (write-region str 'end-is-ignored file-name nil 'no-message))