; * lisp/subr.el (setq-local): Doc fix (bug#78644).
This commit is contained in:
@@ -161,11 +161,12 @@ of previous VARs.
|
||||
`(progn . ,(nreverse exps))))
|
||||
|
||||
(defmacro setq-local (&rest pairs)
|
||||
"Make each VARIABLE buffer-local and assign to it the corresponding VALUE.
|
||||
"Make each VARIABLE local to current buffer and set it to corresponding VALUE.
|
||||
|
||||
The arguments are variable/value pairs. For each VARIABLE in a pair,
|
||||
make VARIABLE buffer-local and assign to it the corresponding VALUE
|
||||
of the pair. The VARIABLEs are literal symbols and should not be quoted.
|
||||
make VARIABLE buffer-local in the current buffer and assign to it the
|
||||
corresponding VALUE of the pair. The VARIABLEs are literal symbols
|
||||
and should not be quoted.
|
||||
|
||||
The VALUE of the Nth pair is not computed until after the VARIABLE
|
||||
of the (N-1)th pair is set; thus, each VALUE can use the new VALUEs
|
||||
|
||||
Reference in New Issue
Block a user