diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-06-18 09:11:47 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2010-06-18 09:11:47 -0400 |
commit | 4a330052b4815cf833071aae5cb312f6f0f63613 (patch) | |
tree | 5384a188f6767e822ed6437861b97e08efb5c60a /src/eval.c | |
parent | 3c3ddb9833996729545bb4909bea359e5dbaa02e (diff) | |
download | emacs-4a330052b4815cf833071aae5cb312f6f0f63613.tar.gz |
* src/eval.c (Fspecial_variable_p): Rename from `specialp'.
* lisp/emacs-lisp/byte-lexbind.el (byte-compile-compute-lforminfo):
specialp -> special-variable-p.
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) -DEFUN ("specialp", Fspecialp, Sspecialp, 1, 1, 0, +DEFUN ("special-variable-p", Fspecial_variable_p, Sspecial_variable_p, 1, 1, 0, doc: /* Return non-nil if SYMBOL's global binding has been declared special. A special variable is one that will be bound dynamically, even in a context where binding is lexical by default. */) @@ -4138,7 +4138,7 @@ alist of active lexical bindings. */); defsubr (&Sbacktrace); defsubr (&Sbacktrace_frame); defsubr (&Scurry); - defsubr (&Sspecialp); + defsubr (&Sspecial_variable_p); defsubr (&Sfunctionp); } |