1
1

* man2hlp.c (handle_command): Remove quotes from TOPIC.

Этот коммит содержится в:
Pavel Roskin 2002-08-25 18:13:37 +00:00
родитель 7aa2ae12c7
Коммит f9a0f1440a
2 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -1,5 +1,7 @@
2002-08-25 Pavel Roskin <proski@gnu.org>
* man2hlp.c (handle_command): Remove quotes from TOPIC.
* key.c (get_event): Check gpm_fd before using it in FD_SET. If
gpm_fd is -1 (gpm has died), disable mouse support.

Просмотреть файл

@ -373,6 +373,15 @@ handle_command (char *buffer)
print_error ("Syntax error: .\\\"TOPICS: no text");
return;
}
/* Remove quotes */
if (buffer[0] == '"') {
buffer++;
len = strlen (buffer);
if (buffer[len - 1] == '"') {
len--;
buffer[len] = 0;
}
}
Topics = strdup (buffer);
} else {
/* Other commands are ignored */