diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-09-21 17:18:40 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-09-21 17:18:40 +0300 |
commit | 5f6e1c059c601a1be1981347b29604eda2e2f385 (patch) | |
tree | f3dbaabbdbcbea8dab9d190b8e8d9cd2d3b2d48c /lisp/emacs-lisp | |
parent | 661be73b5eb148a6cd6d79837487375cfd422d4d (diff) | |
download | emacs-5f6e1c059c601a1be1981347b29604eda2e2f385.tar.gz emacs-5f6e1c059c601a1be1981347b29604eda2e2f385.tar.bz2 emacs-5f6e1c059c601a1be1981347b29604eda2e2f385.zip |
; * lisp/emacs-lisp/gv.el (gv-synthetic-place): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/gv.el | 6 |
1 files changed, 4 insertions, 2 deletions
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) |