1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00

Options i18n debug code: accept > as ending char, it is used for tags.

This commit is contained in:
Laurent MONIN 2005-10-30 17:42:58 +01:00 committed by Laurent MONIN
parent 0cc6877365
commit b374d9f407

View File

@ -74,7 +74,7 @@ static void free_options_tree(struct list_head *, int recursive);
/* Detect ending '.' (and some others) in options captions.
* It will emit a message in debug mode only. --Zas */
#define bad_punct(c) (c != ')' && !isquote(c) && ispunct(c))
#define bad_punct(c) (c != ')' && c!= '>' && !isquote(c) && ispunct(c))
static void
check_caption(unsigned char *caption)