diff options
| author | Nicolas Richard | 2016-08-23 11:50:52 +0200 |
|---|---|---|
| committer | Nicolas Richard | 2016-08-31 23:51:27 +0200 |
| commit | ed4530dbc9c1ececa2b6f9c490f213746f336690 (patch) | |
| tree | 3fc37a35d3325a7a2b603491d0e2608d8a365ee6 | |
| parent | 88ea396c42beae9c60db4de351796fc529c40d64 (diff) | |
| download | emacs-ed4530dbc9c1ececa2b6f9c490f213746f336690.tar.gz emacs-ed4530dbc9c1ececa2b6f9c490f213746f336690.zip | |
* lisp/emacs-lisp/gv.el (gv-ref): Fix example of PLACE in docstring.
| -rw-r--r-- | lisp/emacs-lisp/gv.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/gv.el b/lisp/emacs-lisp/gv.el index 93572e5e658..fa7ac64bf04 100644 --- a/lisp/emacs-lisp/gv.el +++ b/lisp/emacs-lisp/gv.el | |||
| @@ -536,7 +536,7 @@ This macro only makes sense when used in a place." | |||
| 536 | "Return a reference to PLACE. | 536 | "Return a reference to PLACE. |
| 537 | This is like the `&' operator of the C language. | 537 | This is like the `&' operator of the C language. |
| 538 | Note: this only works reliably with lexical binding mode, except for very | 538 | Note: this only works reliably with lexical binding mode, except for very |
| 539 | simple PLACEs such as (function-symbol \\='foo) which will also work in dynamic | 539 | simple PLACEs such as (symbol-function \\='foo) which will also work in dynamic |
| 540 | binding mode." | 540 | binding mode." |
| 541 | (let ((code | 541 | (let ((code |
| 542 | (gv-letplace (getter setter) place | 542 | (gv-letplace (getter setter) place |