diff options
author | Tom Tromey <tromey@redhat.com> | 2012-08-23 01:11:22 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-08-23 01:11:22 -0600 |
commit | c6bb874290bb0d56d2caa106fc3989cf34a72c3e (patch) | |
tree | c7f0e392a1bdd080bbdd6bc3837995558ac450fb /src/data.c | |
parent | 66ddd174be5aaf2c70666adc4046615cf3413d5b (diff) | |
download | emacs-c6bb874290bb0d56d2caa106fc3989cf34a72c3e.tar.gz |
rename condition-variablep to condition-variable-p
Diffstat (limited to 'src/data.c')
-rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index fa40f14ccba..ac6c7af9d3c 100644 --- a/src/data.c +++ b/src/data.c @@ -485,7 +485,7 @@ DEFUN ("mutexp", Fmutexp, Smutexp, 1, 1, 0, return Qnil; } -DEFUN ("condition-variablep", Fcondition_variablep, Scondition_variablep, +DEFUN ("condition-variable-p", Fcondition_variable_p, Scondition_variable_p, 1, 1, 0, doc: /* Return t if OBJECT is a condition variable. */) (Lisp_Object object) @@ -3174,7 +3174,7 @@ syms_of_data (void) defsubr (&Schar_or_string_p); defsubr (&Sthreadp); defsubr (&Smutexp); - defsubr (&Scondition_variablep); + defsubr (&Scondition_variable_p); defsubr (&Scar); defsubr (&Scdr); defsubr (&Scar_safe); |