mirror of
https://github.com/rfivet/uemacs.git
synced 2024-12-18 07:16:23 -05:00
^X= buffer-position displays EOL character as \r for DOS. Number of characters in file is also reported correctly.
This commit is contained in:
parent
267c218b9b
commit
af919c3f9c
4
random.c
4
random.c
@ -101,13 +101,13 @@ int showcpos(int f, int n)
|
||||
predchars = numchars + curwp->w_doto;
|
||||
len = llength( lp) ;
|
||||
if( (curwp->w_doto) == len)
|
||||
curchar = '\n';
|
||||
curchar = (curbp->b_mode & MDDOS) ? '\r' : '\n' ;
|
||||
else
|
||||
bytes = utf8_to_unicode( lp->l_text, curwp->w_doto, len, &curchar) ;
|
||||
}
|
||||
/* on to the next line */
|
||||
++numlines;
|
||||
numchars += llength(lp) + 1;
|
||||
numchars += llength( lp) + ((curbp->b_mode & MDDOS) ? 2 : 1) ;
|
||||
lp = lforw(lp);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user