summaryrefslogtreecommitdiff
path: root/lisp/textmodes/page.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes/page.el')
-rw-r--r--lisp/textmodes/page.el59
1 files changed, 34 insertions, 25 deletions
diff --git a/lisp/textmodes/page.el b/lisp/textmodes/page.el
index 8921b697f3b..a42fc6e0538 100644
--- a/lisp/textmodes/page.el
+++ b/lisp/textmodes/page.el
@@ -125,41 +125,50 @@ thus showing a page other than the one point was originally in."
(point)))))
(put 'narrow-to-page 'disabled t)
-(defun count-lines-page ()
- "Report number of lines on current page, and how many are before or after point."
- (interactive)
+(defun page--count-lines-page ()
+ "Return a list of line counts on the current page.
+The list is on the form (TOTAL BEFORE AFTER), where TOTAL is the
+total number of lines on the current page, while BEFORE and AFTER
+are the number of lines on the current page before and after
+point, respectively."
(save-excursion
- (let ((opoint (point)) beg end
- total before after)
+ (let ((opoint (point)))
(forward-page)
(beginning-of-line)
- (or (looking-at page-delimiter)
- (end-of-line))
- (setq end (point))
- (backward-page)
- (setq beg (point))
- (setq total (count-lines beg end)
- before (count-lines beg opoint)
- after (count-lines opoint end))
- (message (ngettext "Page has %d line (%d + %d)"
- "Page has %d lines (%d + %d)" total)
- total before after))))
+ (unless (looking-at page-delimiter)
+ (end-of-line))
+ (let ((end (point)))
+ (backward-page)
+ (list (count-lines (point) end)
+ (count-lines (point) opoint)
+ (count-lines opoint end))))))
-(defun what-page ()
- "Print page and line number of point."
+(defun count-lines-page ()
+ "Report number of lines on current page, and how many are before or after point."
(interactive)
+ (pcase-let ((`(,total ,before ,after) (page--count-lines-page)))
+ (message (ngettext "Page has %d line (%d + %d)"
+ "Page has %d lines (%d + %d)" total)
+ total before after)))
+
+(defun page--what-page ()
+ "Return a list of the page and line number of point."
(save-restriction
(widen)
(save-excursion
(let ((count 1)
- (opoint (point)))
- (goto-char (point-min))
- (while (re-search-forward page-delimiter opoint t)
- (if (= (match-beginning 0) (match-end 0))
- (forward-char 1))
- (setq count (1+ count)))
- (message "Page %d, line %d" count (line-number-at-pos opoint))))))
+ (opoint (point)))
+ (goto-char (point-min))
+ (while (re-search-forward page-delimiter opoint t)
+ (when (= (match-beginning 0) (match-end 0))
+ (forward-char))
+ (setq count (1+ count)))
+ (list count (line-number-at-pos opoint))))))
+(defun what-page ()
+ "Print page and line number of point."
+ (interactive)
+ (apply #'message (cons "Page %d, line %d" (page--what-page))))
;;; Place `provide' at end of file.