aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/eval.c b/src/eval.c
index b42f9047257..ac98ca11bd4 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -705,7 +705,7 @@ If SYMBOL has a local binding, then this form affects the local
705binding. This is usually not what you want. Thus, if you need to 705binding. This is usually not what you want. Thus, if you need to
706load a file defining variables, with this form or with `defconst' or 706load a file defining variables, with this form or with `defconst' or
707`defcustom', you should always load that file _outside_ any bindings 707`defcustom', you should always load that file _outside_ any bindings
708for these variables. \(`defconst' and `defcustom' behave similarly in 708for these variables. (`defconst' and `defcustom' behave similarly in
709this respect.) 709this respect.)
710 710
711The optional argument DOCSTRING is a documentation string for the 711The optional argument DOCSTRING is a documentation string for the
@@ -1188,7 +1188,7 @@ suppresses the debugger).
1188When a handler handles an error, control returns to the `condition-case' 1188When a handler handles an error, control returns to the `condition-case'
1189and it executes the handler's BODY... 1189and it executes the handler's BODY...
1190with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error. 1190with VAR bound to (ERROR-SYMBOL . SIGNAL-DATA) from the error.
1191\(If VAR is nil, the handler can't access that information.) 1191(If VAR is nil, the handler can't access that information.)
1192Then the value of the last BODY form is returned from the `condition-case' 1192Then the value of the last BODY form is returned from the `condition-case'
1193expression. 1193expression.
1194 1194
@@ -2366,7 +2366,7 @@ may be nil, a function, or a list of functions. Call each
2366function in order with arguments ARGS, stopping at the first 2366function in order with arguments ARGS, stopping at the first
2367one that returns nil, and return nil. Otherwise (if all functions 2367one that returns nil, and return nil. Otherwise (if all functions
2368return non-nil, or if there are no functions to call), return non-nil 2368return non-nil, or if there are no functions to call), return non-nil
2369\(do not rely on the precise return value in this case). 2369(do not rely on the precise return value in this case).
2370 2370
2371Do not use `make-local-variable' to make a hook variable buffer-local. 2371Do not use `make-local-variable' to make a hook variable buffer-local.
2372Instead, use `add-hook' and specify t for the LOCAL argument. 2372Instead, use `add-hook' and specify t for the LOCAL argument.