Function: registerv--make
registerv--make is a byte-compiled function defined in register.el.gz.
Signature
(registerv--make &optional DATA PRINT-FUNC JUMP-FUNC INSERT-FUNC)
Documentation
Constructor for objects of type registerv.
Source Code
;; Defined in /usr/src/emacs/lisp/register.el.gz
;;; Code:
;; FIXME: Clean up namespace usage!
(cl-defstruct
(registerv (:constructor nil)
(:constructor registerv--make (&optional data print-func
jump-func insert-func))
(:copier nil))
(data nil :read-only t)
(print-func nil :read-only t)
(jump-func nil :read-only t)
(insert-func nil :read-only t))