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

Improve handling of UTF-8 interactive input of strings.

This commit is contained in:
2021-08-01 15:07:06 +08:00
parent 27f30e48d2
commit 7730a4e730
3 changed files with 37 additions and 33 deletions

View File

@@ -954,7 +954,7 @@ static int iovstring( int f, int n, const char *prompt, int (*fun)( char *)) {
* int f, n; ignored arguments
*/
int istring( int f, int n) {
return iovstring( f, n, "String to insert<META>: ", linstr) ;
return iovstring( f, n, "insert-string<META>: ", linstr) ;
}
/*
@@ -964,7 +964,7 @@ int istring( int f, int n) {
* int f, n; ignored arguments
*/
int ovstring( int f, int n) {
return iovstring( f, n, "String to overwrite<META>: ", lover) ;
return iovstring( f, n, "overwrite-string<META>: ", lover) ;
}
/* end of random.c */