Index: DocOp.java =================================================================== RCS file: /cvs/editor/libsrc/org/netbeans/editor/DocOp.java,v retrieving revision 1.13 diff -c -r1.13 DocOp.java *** DocOp.java 6 Apr 2001 09:29:13 -0000 1.13 --- DocOp.java 30 Oct 2001 17:10:01 -0000 *************** *** 398,404 **** synchronized int getEOLNL(int pos) throws BadLocationException { int eol = getEOLImpl(pos); if (eol < docLen) { ! return eol++; } return eol; } --- 398,404 ---- synchronized int getEOLNL(int pos) throws BadLocationException { int eol = getEOLImpl(pos); if (eol < docLen) { ! return ++eol; } return eol; }