Function: ccl-compile-write-string
ccl-compile-write-string is a byte-compiled function defined in
ccl.el.gz.
Signature
(ccl-compile-write-string STR)
Documentation
Compile WRITE statement with string argument.
Source Code
;; Defined in /usr/src/emacs/lisp/international/ccl.el.gz
(defun ccl-compile-write-string (str)
"Compile WRITE statement with string argument."
(let ((len (length str)))
(ccl-embed-code 'write-const-string 1 len)
(ccl-embed-string len str))
nil)