Function: byte-compile-stack-set
byte-compile-stack-set is a byte-compiled function defined in
bytecomp.el.gz.
Signature
(byte-compile-stack-set STACK-POS)
Documentation
Output byte codes to store the TOS value at stack position STACK-POS.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/bytecomp.el.gz
(defun byte-compile-stack-set (stack-pos)
"Output byte codes to store the TOS value at stack position STACK-POS."
(byte-compile-out 'byte-stack-set (- byte-compile-depth (1+ stack-pos))))