Function: todo-item-string

todo-item-string is a byte-compiled function defined in todo-mode.el.gz.

Signature

(todo-item-string)

Documentation

Return bare text of current item as a string.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/todo-mode.el.gz
(defun todo-item-string ()
  "Return bare text of current item as a string."
  (let ((opoint (point))
	(start (todo-item-start))
	(end (todo-item-end)))
    (goto-char opoint)
    (and start end (buffer-substring-no-properties start end))))