summaryrefslogtreecommitdiff
path: root/doc/lispref/positions.texi
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2017-04-09 12:46:57 +0200
committerNicolas Petton <nicolas@petton.fr>2017-07-03 14:43:02 +0200
commita7754a250b74c17e1f63194e601f20fdb911dd7c (patch)
tree965a6cdeff62984195ff7f41fe55d749e200ba3d /doc/lispref/positions.texi
parent2d846eece7641cbf4ca840f26a835af266d6887e (diff)
downloademacs-a7754a250b74c17e1f63194e601f20fdb911dd7c.tar.gz
emacs-a7754a250b74c17e1f63194e601f20fdb911dd7c.tar.bz2
emacs-a7754a250b74c17e1f63194e601f20fdb911dd7c.zip
Add absolute optional parameter to line-number-at-pos (Bug#26417)
* lisp/simple.el (line-number-at-pos): Add a second optional argument 'absolute'. * test/list/simple-tests.el: Add tests for 'line-number-at-pos'.
Diffstat (limited to 'doc/lispref/positions.texi')
-rw-r--r--doc/lispref/positions.texi11
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/lispref/positions.texi b/doc/lispref/positions.texi
index 7c30fe977ca..9fd4bd8fe8e 100644
--- a/doc/lispref/positions.texi
+++ b/doc/lispref/positions.texi
@@ -432,11 +432,16 @@ prints a message reporting the number of lines, words, and characters
in the buffer, or in the region if the region is active.
@end deffn
-@defun line-number-at-pos &optional pos
+@defun line-number-at-pos &optional pos absolute
@cindex line number
This function returns the line number in the current buffer
-corresponding to the buffer position @var{pos}. If @var{pos} is @code{nil}
-or omitted, the current buffer position is used.
+corresponding to the buffer position @var{pos}. If @var{pos} is
+@code{nil} or omitted, the current buffer position is used. If
+@var{absolute} is @code{nil}, the default, counting starts at
+@code{(point-min)}, so the value refers to the contents of the
+accessible portion of the (potentially narrowed) buffer. If
+@var{absolute} is non-@code{nil}, ignore any narrowing and return
+the absolute line number.
@end defun
@ignore