]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix 'what-page'
authorLars Brinkhoff <lars@nocrew.org>
Tue, 2 Jan 2024 08:06:13 +0000 (09:06 +0100)
committerEli Zaretskii <eliz@gnu.org>
Sat, 13 Jan 2024 10:07:34 +0000 (12:07 +0200)
* lisp/textmodes/page.el (page--what-page): Adjust for 1st
line on page, and use 'count-lines' again.  (Bug#68215)

* test/lisp/textmodes/page-tests.el (page-tests-what-page):
Update test.

lisp/textmodes/page.el
test/lisp/textmodes/page-tests.el

index e8621ee0383ee39664e5338d974296f3a224f694..1c7561d71c6cb1ed2f2384c274c92600cd308f88 100644 (file)
@@ -159,21 +159,23 @@ point, respectively."
              total before after)))
 
 (defun page--what-page ()
-  "Return a list of the page and line number of point."
+  "Return a list of the page and line number of point.
+The line number is relative to the start of the page."
   (save-restriction
     (widen)
     (save-excursion
       (let ((count 1)
+            (adjust (if (or (bolp) (looking-back page-delimiter)) 1 0))
             (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))))))
+        (list count (+ adjust (count-lines (point) opoint)))))))
 
 (defun what-page ()
-  "Print page and line number of point."
+  "Display the page number, and the line number within that page."
   (interactive)
   (apply #'message (cons "Page %d, line %d" (page--what-page))))
 
index f3a2c5fbe00d9672627fc396b4d97ae2fdadb085..617b59a54fb83281d5dd1a304e1177dff992171c 100644 (file)
     (insert "foo\n\f\nbar\n\f\nbaz")
     (goto-char (point-min))
     (should (equal (page--what-page) '(1 1)))
+    (forward-char)
+    (should (equal (page--what-page) '(1 1)))
     (forward-page)
+    (should (equal (page--what-page) '(2 1)))
+    (next-line)
     (should (equal (page--what-page) '(2 2)))
     (forward-page)
-    (should (equal (page--what-page) '(3 4)))))
+    (should (equal (page--what-page) '(3 1)))))
 
 
 ;;; page-tests.el ends here