Open links properly if ending with "

This commit is contained in:
Antonio Prcela 2021-03-12 09:40:40 +01:00
parent 090fd29acf
commit 2305a0b0fe
No known key found for this signature in database
GPG Key ID: D89DF912BD594518

View File

@ -64,7 +64,7 @@
/* is delimiter */
#define is_del(c) \
(c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0)
(c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0 || c == '"')
/* force scrolling off */
#define dontscroll(buf) (buf)->last_pixel_pos = 0x7fffffff