diff options
| author | Stefan Monnier | 2010-06-18 09:11:47 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2010-06-18 09:11:47 -0400 |
| commit | 4a330052b4815cf833071aae5cb312f6f0f63613 (patch) | |
| tree | 5384a188f6767e822ed6437861b97e08efb5c60a /src | |
| parent | 3c3ddb9833996729545bb4909bea359e5dbaa02e (diff) | |
| download | emacs-4a330052b4815cf833071aae5cb312f6f0f63613.tar.gz emacs-4a330052b4815cf833071aae5cb312f6f0f63613.zip | |
* 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')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/eval.c | 4 |
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 @@ | |||
| 1 | 2010-06-18 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * eval.c (Fspecial_variable_p): Rename from `specialp'. | ||
| 4 | |||
| 1 | 2010-06-15 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2010-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 | ||
| 3756 | DEFUN ("specialp", Fspecialp, Sspecialp, 1, 1, 0, | 3756 | DEFUN ("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. |
| 3758 | A special variable is one that will be bound dynamically, even in a | 3758 | A special variable is one that will be bound dynamically, even in a |
| 3759 | context where binding is lexical by default. */) | 3759 | context 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 | ||