Function: data-debug-current-line-expanded-p
data-debug-current-line-expanded-p is a byte-compiled function defined
in data-debug.el.gz.
Signature
(data-debug-current-line-expanded-p)
Documentation
Return non-nil if the current line is expanded.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
(defun data-debug-current-line-expanded-p ()
"Return non-nil if the current line is expanded."
(let ((ti (current-indentation))
(ni (condition-case nil
(save-excursion
(end-of-line)
(forward-char 1)
(current-indentation))
(error 0))))
(> ni ti)))