1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Add some whitespace in bad_punct.

This commit is contained in:
Miciah Dashiel Butler Masters 2005-11-11 06:17:50 +00:00 committed by Miciah Dashiel Butler Masters
parent f7bc7c3497
commit 5d39d90909

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 != ')' && c!= '>' && !isquote(c) && ispunct(c))
#define bad_punct(c) (c != ')' && c != '>' && !isquote(c) && ispunct(c))
static void
check_caption(unsigned char *caption)