Function: message-make-lines
message-make-lines is a byte-compiled function defined in
message.el.gz.
Signature
(message-make-lines)
Documentation
Count the number of lines and return numeric string.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-make-lines ()
"Count the number of lines and return numeric string."
(save-excursion
(save-restriction
(widen)
(message-goto-body)
(int-to-string (count-lines (point) (point-max))))))