summaryrefslogtreecommitdiff
path: root/doc/lispref/threads.texi
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-08-27 12:57:18 -0600
committerTom Tromey <tromey@redhat.com>2013-08-27 12:57:18 -0600
commit8c46d17826ae89bfa22b5e8048c013c0e3a38b2d (patch)
treef1db2f0c9f3aed10120139ec08a733db245b9a35 /doc/lispref/threads.texi
parent07efb140348b4a4015c69ed102a5fa216978506f (diff)
downloademacs-8c46d17826ae89bfa22b5e8048c013c0e3a38b2d.tar.gz
emacs-8c46d17826ae89bfa22b5e8048c013c0e3a38b2d.tar.bz2
emacs-8c46d17826ae89bfa22b5e8048c013c0e3a38b2d.zip
rename thread-blocker to thread--blocker
Diffstat (limited to 'doc/lispref/threads.texi')
-rw-r--r--doc/lispref/threads.texi7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/lispref/threads.texi b/doc/lispref/threads.texi
index 9c333546040..c846993172f 100644
--- a/doc/lispref/threads.texi
+++ b/doc/lispref/threads.texi
@@ -1,6 +1,6 @@
@c -*-texinfo-*-
@c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 2012
+@c Copyright (C) 2012, 2013
@c Free Software Foundation, Inc.
@c See the file elisp.texi for copying conditions.
@node Threads
@@ -101,9 +101,10 @@ Return @code{t} if @var{thread} is alive, or @code{nil} if it is not.
A thread is alive as long as its function is still executing.
@end defun
-@defun thread-blocker thread
+@defun thread--blocker thread
Return the object that @var{thread} is waiting on. This function is
-primarily intended for debugging.
+primarily intended for debugging, and is given a ``double hyphen''
+name to indicate that.
If @var{thread} is blocked in @code{thread-join}, this returns the
thread for which it is waiting.