diff options
| author | Tom Tromey | 2013-10-17 21:32:26 -0600 |
|---|---|---|
| committer | Tom Tromey | 2013-10-17 21:32:26 -0600 |
| commit | 77936017aff66041231f078e8b269247c721456e (patch) | |
| tree | f8b52e3849d27705f77ea3c5a1203b85bda7cf2e /src/thread.c | |
| parent | bed10876dba330b24419a6144dc62db52bb273ab (diff) | |
| download | emacs-77936017aff66041231f078e8b269247c721456e.tar.gz emacs-77936017aff66041231f078e8b269247c721456e.zip | |
change condition-variablep to condition-variable-p
Diffstat (limited to 'src/thread.c')
| -rw-r--r-- | src/thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/thread.c b/src/thread.c index f060a002a3a..cd9e916c571 100644 --- a/src/thread.c +++ b/src/thread.c | |||
| @@ -33,7 +33,7 @@ static struct thread_state *all_threads = &primary_thread; | |||
| 33 | 33 | ||
| 34 | static sys_mutex_t global_lock; | 34 | static sys_mutex_t global_lock; |
| 35 | 35 | ||
| 36 | Lisp_Object Qthreadp, Qmutexp, Qcondition_variablep; | 36 | Lisp_Object Qthreadp, Qmutexp, Qcondition_variable_p; |
| 37 | 37 | ||
| 38 | 38 | ||
| 39 | 39 | ||
| @@ -969,6 +969,6 @@ syms_of_threads (void) | |||
| 969 | staticpro (&Qthreadp); | 969 | staticpro (&Qthreadp); |
| 970 | Qmutexp = intern_c_string ("mutexp"); | 970 | Qmutexp = intern_c_string ("mutexp"); |
| 971 | staticpro (&Qmutexp); | 971 | staticpro (&Qmutexp); |
| 972 | Qcondition_variablep = intern_c_string ("condition-variablep"); | 972 | Qcondition_variable_p = intern_c_string ("condition-variable-p"); |
| 973 | staticpro (&Qcondition_variablep); | 973 | staticpro (&Qcondition_variable_p); |
| 974 | } | 974 | } |