Function: TeX-arg-space
TeX-arg-space is a byte-compiled function defined in tex.el.
Signature
(TeX-arg-space OPTIONAL &optional HOW-MANY)
Documentation
Ignore OPTIONAL and insert 1 or HOW-MANY spaces.
This function is equivalent to
(TeX-arg-literal " ")
when HOW-MANY is omitted.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-arg-space (_optional &optional how-many)
"Ignore OPTIONAL and insert 1 or HOW-MANY spaces.
This function is equivalent to
(TeX-arg-literal \" \")
when HOW-MANY is omitted."
(insert (make-string (or how-many 1) ?\s)))