mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
Revert "hexchat: backtick is also a common delimiter"
caused a regression with nicks that have '`' in them
This commit is contained in:
parent
7047a4d150
commit
a901837d96
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ index 418bb4da5..fb4962e12 100644
|
||||||
/* is delimiter */
|
/* is delimiter */
|
||||||
#define is_del(c) \
|
#define is_del(c) \
|
||||||
- (c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0)
|
- (c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0)
|
||||||
+ (c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0 || c == '"' || c == '\'' || c == '`')
|
+ (c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0 || c == '"' || c == '\'')
|
||||||
|
|
||||||
/* force scrolling off */
|
/* force scrolling off */
|
||||||
#define dontscroll(buf) (buf)->last_pixel_pos = 0x7fffffff
|
#define dontscroll(buf) (buf)->last_pixel_pos = 0x7fffffff
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'hexchat'
|
# Template file for 'hexchat'
|
||||||
pkgname=hexchat
|
pkgname=hexchat
|
||||||
version=2.16.2
|
version=2.16.2
|
||||||
revision=3
|
revision=4
|
||||||
build_style=meson
|
build_style=meson
|
||||||
configure_args="-Ddbus=enabled -Dtls=enabled
|
configure_args="-Ddbus=enabled -Dtls=enabled
|
||||||
-Dwith-perl=/usr/bin/perl -Dwith-python=python3
|
-Dwith-perl=/usr/bin/perl -Dwith-python=python3
|
||||||
|
|
Loading…
Add table
Reference in a new issue