aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesper Harder2004-04-05 20:35:58 +0000
committerJesper Harder2004-04-05 20:35:58 +0000
commit571fd4d55d35f7419bce0222c56b6684ce601ae4 (patch)
treebdf261c61bcaab6cafda18e42f9385cf1ede07e1
parentd8f8d1bb806fc91d471531b555f668db56cd3cb7 (diff)
downloademacs-571fd4d55d35f7419bce0222c56b6684ce601ae4.tar.gz
emacs-571fd4d55d35f7419bce0222c56b6684ce601ae4.zip
* variables.texi (Variable Aliases): Mention
cyclic-variable-indirection. * errors.texi (Standard Errors): Ditto.
-rw-r--r--lispref/ChangeLog7
-rw-r--r--lispref/errors.texi4
-rw-r--r--lispref/variables.texi3
3 files changed, 14 insertions, 0 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index ac272e94a87..ada77ec4a36 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,10 @@
12004-04-05 Jesper Harder <harder@ifa.au.dk>
2
3 * variables.texi (Variable Aliases): Mention
4 cyclic-variable-indirection.
5
6 * errors.texi (Standard Errors): Ditto.
7
12004-04-04 Luc Teirlinck <teirllm@auburn.edu> 82004-04-04 Luc Teirlinck <teirllm@auburn.edu>
2 9
3 * backups.texi: Various small changes in addition to: 10 * backups.texi: Various small changes in addition to:
diff --git a/lispref/errors.texi b/lispref/errors.texi
index daffbf308b3..8591fb9a45f 100644
--- a/lispref/errors.texi
+++ b/lispref/errors.texi
@@ -62,6 +62,10 @@ See @code{/} and @code{%} in @ref{Numbers}.
62@code{"Symbol's chain of function indirections\@* contains a loop"}@* 62@code{"Symbol's chain of function indirections\@* contains a loop"}@*
63@xref{Function Indirection}. 63@xref{Function Indirection}.
64 64
65@item cyclic-variable-indirection
66@code{"Symbol's chain of variable indirections contains a loop"}@*
67@xref{Variable Aliases}.
68
65@item end-of-buffer 69@item end-of-buffer
66@code{"End of buffer"}@* 70@code{"End of buffer"}@*
67@xref{Motion}. 71@xref{Motion}.
diff --git a/lispref/variables.texi b/lispref/variables.texi
index 4ff40120ca4..f4c56ede4d9 100644
--- a/lispref/variables.texi
+++ b/lispref/variables.texi
@@ -1714,6 +1714,9 @@ This function returns @var{base-var}.
1714This function returns the variable at the end of the chain of aliases 1714This function returns the variable at the end of the chain of aliases
1715of @var{variable}. If @var{variable} is not a symbol, or if @var{variable} is 1715of @var{variable}. If @var{variable} is not a symbol, or if @var{variable} is
1716not defined as an alias, the function returns @var{variable}. 1716not defined as an alias, the function returns @var{variable}.
1717
1718This function signals a @code{cyclic-variable-indirection} error if
1719there is a loop in the chain of symbols.
1717@end defun 1720@end defun
1718 1721
1719@example 1722@example