Function: thread-buffer-disposition

thread-buffer-disposition is a function defined in thread.c.

Signature

(thread-buffer-disposition THREAD)

Documentation

Return the value of THREAD's buffer disposition.

See make-thread for the description of possible values.

View in manual

Source Code

// Defined in /usr/src/emacs/src/thread.c
{
  struct thread_state *tstate;

  CHECK_THREAD (thread);
  tstate = XTHREAD (thread);

  return tstate->buffer_disposition;
}