Function: org-log-into-drawer

org-log-into-drawer is a byte-compiled function defined in org.el.gz.

Signature

(org-log-into-drawer)

Documentation

Name of the log drawer, as a string, or nil.

This is the value of org-log-into-drawer(var)/org-log-into-drawer(fun). However, if the current entry has or inherits a LOG_INTO_DRAWER property, it will be used instead of the default value.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-log-into-drawer ()
  "Name of the log drawer, as a string, or nil.
This is the value of `org-log-into-drawer'.  However, if the
current entry has or inherits a LOG_INTO_DRAWER property, it will
be used instead of the default value."
  (let ((p (org-entry-get nil "LOG_INTO_DRAWER" 'inherit t)))
    (cond ((equal p "nil") nil)
	  ((equal p "t") "LOGBOOK")
	  ((stringp p) p)
	  (p "LOGBOOK")
	  ((stringp org-log-into-drawer) org-log-into-drawer)
	  (org-log-into-drawer "LOGBOOK"))))