1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

Handle 8-bit characters better in display

This code still assumes a latin1 kind of "one byte, one character" setup.

UTF-8 input/output (even if the data is encoded in latin-1) is a separate
issue.
This commit is contained in:
Linus Torvalds
2005-10-01 10:46:09 -07:00
parent ef92bc8cd9
commit dbc51bf972
2 changed files with 36 additions and 15 deletions

View File

@@ -141,7 +141,7 @@ extern void vtinit(void);
extern void vtfree(void);
extern void vttidy(void);
extern void vtmove(int row, int col);
extern void vtputc(int c);
extern void vtputc(unsigned char c);
extern void vteeol(void);
extern int upscreen(int f, int n);
extern int update(int force);