Function: srecode-document-one-line-tag-p
srecode-document-one-line-tag-p is a byte-compiled function defined in
document.el.gz.
Signature
(srecode-document-one-line-tag-p TAG)
Documentation
Does TAG fit on one line with space on the end?
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/document.el.gz
;;; UTILS
;;
(defun srecode-document-one-line-tag-p (tag)
"Does TAG fit on one line with space on the end?"
(save-excursion
(semantic-go-to-tag tag)
(and (<= (semantic-tag-end tag) (point-at-eol))
(goto-char (semantic-tag-end tag))
(< (current-column) 70))))