Function: what-page

what-page is an interactive and byte-compiled function defined in page.el.gz.

Signature

(what-page)

Documentation

Print page and line number of point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/page.el.gz
(defun what-page ()
  "Print page and line number of point."
  (interactive)
  (apply #'message (cons "Page %d, line %d" (page--what-page))))