Function: make-ring

make-ring is an autoloaded and byte-compiled function defined in ring.el.gz.

Signature

(make-ring SIZE)

Documentation

Make a ring that can contain SIZE elements.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/ring.el.gz
;;;###autoload
(defun make-ring (size)
  "Make a ring that can contain SIZE elements."
  (cons 0 (cons 0 (make-vector size nil))))