From: Eli Zaretskii Date: Wed, 21 Sep 2022 14:18:40 +0000 (+0300) Subject: ; * lisp/emacs-lisp/gv.el (gv-synthetic-place): Doc fix. X-Git-Tag: emacs-29.0.90~1856^2~323 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5f6e1c059c601a1be1981347b29604eda2e2f385;p=emacs.git ; * lisp/emacs-lisp/gv.el (gv-synthetic-place): Doc fix. --- diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el index d4aed3ac391..ade8064114d 100644 --- a/lisp/emacs-lisp/gv.el +++ b/lisp/emacs-lisp/gv.el @@ -540,8 +540,10 @@ The return value is the last VAL in the list. "Special place described by its setter and getter. GETTER and SETTER (typically obtained via `gv-letplace') get and set that place. I.e. this function allows you to do the -\"reverse\" of what `gv-letplace' does. This function only makes -sense when used in a place." +\"reverse\" of what `gv-letplace' does. + +This function is only useful when used in conjunction with +generalized variables in place forms." (declare (gv-expander funcall) (compiler-macro (lambda (_) getter))) (ignore setter) getter)