diff options
| author | Luc Teirlinck | 2003-12-25 03:45:43 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2003-12-25 03:45:43 +0000 |
| commit | b51785c1212fceae6491be5e670dc4f935d91cde (patch) | |
| tree | b0540a49644d704beaa06c1e45b60412ab77ba0e /lispref/objects.texi | |
| parent | 636a7460c98ebbe224b2df8425fd6793a884b15a (diff) | |
| download | emacs-b51785c1212fceae6491be5e670dc4f935d91cde.tar.gz emacs-b51785c1212fceae6491be5e670dc4f935d91cde.zip | |
(Lisp Data Types): Mention that certain variables can only take on a
restricted set of values and add an xref to the new node "Variables
with Restricted Values".
Diffstat (limited to 'lispref/objects.texi')
| -rw-r--r-- | lispref/objects.texi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index 4c905cb969e..6cb5adb72b8 100644 --- a/lispref/objects.texi +++ b/lispref/objects.texi | |||
| @@ -42,7 +42,9 @@ it as a number; Lisp knows it is a vector, not a number. | |||
| 42 | variable, and the type is known by the compiler but not represented in | 42 | variable, and the type is known by the compiler but not represented in |
| 43 | the data. Such type declarations do not exist in Emacs Lisp. A Lisp | 43 | the data. Such type declarations do not exist in Emacs Lisp. A Lisp |
| 44 | variable can have any type of value, and it remembers whatever value | 44 | variable can have any type of value, and it remembers whatever value |
| 45 | you store in it, type and all. | 45 | you store in it, type and all. (Actually, a small number of Emacs |
| 46 | Lisp variables can only take on values of a certain type. | ||
| 47 | @xref{Variables with Restricted Values}.) | ||
| 46 | 48 | ||
| 47 | This chapter describes the purpose, printed representation, and read | 49 | This chapter describes the purpose, printed representation, and read |
| 48 | syntax of each of the standard types in GNU Emacs Lisp. Details on how | 50 | syntax of each of the standard types in GNU Emacs Lisp. Details on how |