Update of /project/climacs/cvsroot/climacs/Doc In directory common-lisp.net:/tmp/cvs-serv10718
Modified Files: climacs-internals.texi Log Message: Added descriptions of buffer-line-number and buffer-column-number.
Date: Sun Feb 27 20:13:48 2005 Author: abakic
Index: climacs/Doc/climacs-internals.texi diff -u climacs/Doc/climacs-internals.texi:1.13 climacs/Doc/climacs-internals.texi:1.14 --- climacs/Doc/climacs-internals.texi:1.13 Sat Feb 26 06:33:37 2005 +++ climacs/Doc/climacs-internals.texi Sun Feb 27 20:13:47 2005 @@ -305,12 +305,24 @@ end of the buffer), nil otherwise. @end deffn
+@deffn {Generic Function} {buffer-line-number} buffer offset + +Return the line number of the line at offset. Lines are numbered from +zero. +@end deffn + +@deffn {Generic Function} {buffer-column-number} buffer offset + +Return the column number of the line at offset. It is the number of +objects between it and the preceding newline, or between it and the +beginning of the buffer if offset is on the first line of the buffer. +@end deffn + @deffn {Generic Function} {line-number} mark
Return the line number of the mark. Lines are numbered from zero. @end deffn
- @deffn {Generic Function} {column-number} mark
Return the column number of the mark. The column number of a mark is @@ -318,7 +330,6 @@ between it and the beginning of the buffer if the mark is on the first line of the buffer. @end deffn -
@section Inserting and deleting objects