1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-09-26 15:04:04 -04:00

describe-key displays keycode in hexadecimal.

mlwrite assume parameter is unsigned int when doing %x format.
ostring output bytes > 0x7F as unsigned char.
This commit is contained in:
2015-02-09 19:27:49 +08:00
parent 3f1ac2596c
commit 7da7916b28
3 changed files with 12 additions and 7 deletions

View File

@@ -737,9 +737,9 @@ void outstring(char *s)
*
* char *s; string to output
*/
void ostring(char *s)
void ostring( char *s)
{
if (discmd)
while (*s)
TTputc(*s++);
TTputc( *s++ & 0xFF) ;
}