mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
Options i18n debug code: accept > as ending char, it is used for tags.
This commit is contained in:
parent
0cc6877365
commit
b374d9f407
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user