aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/eval.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 017b3eb2553..e70aefd75b5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12010-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * eval.c (Fspecial_variable_p): Rename from `specialp'.
4
12010-06-15 Stefan Monnier <monnier@iro.umontreal.ca> 52010-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * bytecode.c (exec_byte_code): 7 * bytecode.c (exec_byte_code):
diff --git a/src/eval.c b/src/eval.c
index 71a0b111849..a6290618753 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -3753,7 +3753,7 @@ unbind_to (count, value)
3753 3753
3754 3754
3755 3755
3756DEFUN ("specialp", Fspecialp, Sspecialp, 1, 1, 0, 3756DEFUN ("special-variable-p", Fspecial_variable_p, Sspecial_variable_p, 1, 1, 0,
3757 doc: /* Return non-nil if SYMBOL's global binding has been declared special. 3757 doc: /* Return non-nil if SYMBOL's global binding has been declared special.
3758A special variable is one that will be bound dynamically, even in a 3758A special variable is one that will be bound dynamically, even in a
3759context where binding is lexical by default. */) 3759context where binding is lexical by default. */)
@@ -4138,7 +4138,7 @@ alist of active lexical bindings. */);
4138 defsubr (&Sbacktrace); 4138 defsubr (&Sbacktrace);
4139 defsubr (&Sbacktrace_frame); 4139 defsubr (&Sbacktrace_frame);
4140 defsubr (&Scurry); 4140 defsubr (&Scurry);
4141 defsubr (&Sspecialp); 4141 defsubr (&Sspecial_variable_p);
4142 defsubr (&Sfunctionp); 4142 defsubr (&Sfunctionp);
4143} 4143}
4144 4144