diff options
| author | Richard M. Stallman | 1992-06-04 06:43:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-06-04 06:43:29 +0000 |
| commit | 06ef7355233ad4c48339be5bd690beb74fae9056 (patch) | |
| tree | c219ea3831cd01ca9c47be531c71938422b631ef /src/eval.c | |
| parent | aa734e174a97c389893767aa1349e55fc58b5a05 (diff) | |
| download | emacs-06ef7355233ad4c48339be5bd690beb74fae9056.tar.gz emacs-06ef7355233ad4c48339be5bd690beb74fae9056.zip | |
*** empty log message ***
Diffstat (limited to 'src/eval.c')
| -rw-r--r-- | src/eval.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c index abe3674a279..f5e0bc2e276 100644 --- a/src/eval.c +++ b/src/eval.c | |||
| @@ -520,7 +520,8 @@ You are not required to define a variable in order to use it,\n\ | |||
| 520 | but the definition can supply documentation and an initial value\n\ | 520 | but the definition can supply documentation and an initial value\n\ |
| 521 | in a way that tags can recognize.\n\n\ | 521 | in a way that tags can recognize.\n\n\ |
| 522 | INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.\n\ | 522 | INITVALUE is evaluated, and used to set SYMBOL, only if SYMBOL's value is void.\n\ |
| 523 | If SYMBOL is buffer-local, its default value is initialized in this way.\n\ | 523 | If SYMBOL is buffer-local, its default value is what is set;\n\ |
| 524 | buffer-local values are not affected.\n\ | ||
| 524 | INITVALUE and DOCSTRING are optional.\n\ | 525 | INITVALUE and DOCSTRING are optional.\n\ |
| 525 | If DOCSTRING starts with *, this variable is identified as a user option.\n\ | 526 | If DOCSTRING starts with *, this variable is identified as a user option.\n\ |
| 526 | This means that M-x set-variable and M-x edit-options recognize it.\n\ | 527 | This means that M-x set-variable and M-x edit-options recognize it.\n\ |
| @@ -552,7 +553,8 @@ DEFUN ("defconst", Fdefconst, Sdefconst, 2, UNEVALLED, 0, | |||
| 552 | "(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant variable.\n\ | 553 | "(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant variable.\n\ |
| 553 | The intent is that programs do not change this value, but users may.\n\ | 554 | The intent is that programs do not change this value, but users may.\n\ |
| 554 | Always sets the value of SYMBOL to the result of evalling INITVALUE.\n\ | 555 | Always sets the value of SYMBOL to the result of evalling INITVALUE.\n\ |
| 555 | If SYMBOL is buffer-local, its default value is initialized in this way.\n\ | 556 | If SYMBOL is buffer-local, its default value is what is set;\n\ |
| 557 | buffer-local values are not affected.\n\ | ||
| 556 | DOCSTRING is optional.\n\ | 558 | DOCSTRING is optional.\n\ |
| 557 | If DOCSTRING starts with *, this variable is identified as a user option.\n\ | 559 | If DOCSTRING starts with *, this variable is identified as a user option.\n\ |
| 558 | This means that M-x set-variable and M-x edit-options recognize it.\n\n\ | 560 | This means that M-x set-variable and M-x edit-options recognize it.\n\n\ |