Function: TeX-current-pages
TeX-current-pages is a byte-compiled function defined in tex.el.
Signature
(TeX-current-pages)
Documentation
Return string indicating the number of pages formatted.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-current-pages ()
"Return string indicating the number of pages formatted."
(cond ((null TeX-current-page)
"some pages")
((string-match "[^0-9]1[^0-9]" TeX-current-page)
(concat TeX-current-page " page"))
(t
(concat TeX-current-page " pages"))))