Function: setnthcdr

setnthcdr is a byte-compiled function defined in cl-compat.el.gz.

Signature

(setnthcdr N LIST X)

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/cl-compat.el.gz
(defun setnthcdr (n list x)
  (setcdr (nthcdr (1- n) list) x))