Function: cl-psetq
cl-psetq is an autoloaded macro defined in cl-macs.el.gz.
Signature
(cl-psetq SYM VAL SYM VAL ...)
Documentation
Set SYMs to the values VALs in parallel.
This is like setq, except that all VAL forms are evaluated (in order)
before assigning any symbols SYM to the corresponding values.
Aliases
psetq (obsolete since 27.1)
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/cl-macs.el.gz
;;; Assignments.
;;;###autoload
(defmacro cl-psetq (&rest args)
"Set SYMs to the values VALs in parallel.
This is like `setq', except that all VAL forms are evaluated (in order)
before assigning any symbols SYM to the corresponding values.
\(fn SYM VAL SYM VAL ...)"
(declare (debug setq))
(cons 'cl-psetf args))