* man2hlp.c (string_len): Don't exclude characters with codes
above 128 from the string length.
Этот коммит содержится в:
родитель
c13770201f
Коммит
7346c6f93e
@ -1,3 +1,8 @@
|
||||
2002-02-22 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* man2hlp.c (string_len): Don't exclude characters with codes
|
||||
above 128 from the string length.
|
||||
|
||||
2002-02-21 Andrew V. Samoilov <kai@cmail.ru>
|
||||
|
||||
* ext.c (exec_extension): Use "#! /bin/sh".
|
||||
|
@ -75,7 +75,7 @@ static int string_len (char *buffer)
|
||||
len ++;
|
||||
}
|
||||
/* Don't add control characters to the length */
|
||||
if (c < 32)
|
||||
if (c >= 0 && c < 32)
|
||||
continue;
|
||||
/* Attempt to handle backslash quoting */
|
||||
if (c == '\\' && !backslash_flag){
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user