aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/page.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/textmodes/page.el b/lisp/textmodes/page.el
index 2b0cea4c643..8921b697f3b 100644
--- a/lisp/textmodes/page.el
+++ b/lisp/textmodes/page.el
@@ -141,7 +141,9 @@ thus showing a page other than the one point was originally in."
141 (setq total (count-lines beg end) 141 (setq total (count-lines beg end)
142 before (count-lines beg opoint) 142 before (count-lines beg opoint)
143 after (count-lines opoint end)) 143 after (count-lines opoint end))
144 (message "Page has %d lines (%d + %d)" total before after)))) 144 (message (ngettext "Page has %d line (%d + %d)"
145 "Page has %d lines (%d + %d)" total)
146 total before after))))
145 147
146(defun what-page () 148(defun what-page ()
147 "Print page and line number of point." 149 "Print page and line number of point."