diff options
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/variables.texi | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 2309cde2998..eca39e54203 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-10-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * variables.texi (Generalized Variables): Fix typo. | ||
| 4 | |||
| 1 | 2012-10-30 Chong Yidong <cyd@gnu.org> | 5 | 2012-10-30 Chong Yidong <cyd@gnu.org> |
| 2 | 6 | ||
| 3 | * symbols.texi (Symbol Plists): Document function-get. | 7 | * symbols.texi (Symbol Plists): Document function-get. |
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi index 1ffb1f7ffcb..580dd8258df 100644 --- a/doc/lispref/variables.texi +++ b/doc/lispref/variables.texi | |||
| @@ -2025,10 +2025,10 @@ process-filter | |||
| 2025 | Using any forms other than these in the @var{place} argument to | 2025 | Using any forms other than these in the @var{place} argument to |
| 2026 | @code{setf} will signal an error. | 2026 | @code{setf} will signal an error. |
| 2027 | 2027 | ||
| 2028 | Note that for @code{nthcdr} and @code{getf}, the list argument | 2028 | @c And for cl-lib's cl-getf. |
| 2029 | of the function must itself be a valid @var{place} form. For | 2029 | Note that for @code{nthcdr}, the list argument of the function must |
| 2030 | example, @code{(setf (nthcdr 0 foo) 7)} will set @code{foo} itself | 2030 | itself be a valid @var{place} form. For example, @code{(setf (nthcdr |
| 2031 | to 7. | 2031 | 0 foo) 7)} will set @code{foo} itself to 7. |
| 2032 | @c The use of @code{nthcdr} as a @var{place} form is an extension | 2032 | @c The use of @code{nthcdr} as a @var{place} form is an extension |
| 2033 | @c to standard Common Lisp. | 2033 | @c to standard Common Lisp. |
| 2034 | 2034 | ||