mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Try to split long lines on spaces
Try to split long lines on spaces to avoid words being splitted. This can be turned off with the option `split_line_on_space'. The code assumes that the terminal encoding has ASCII spaces.
This commit is contained in:
parent
31ee20e559
commit
f81a54b937
6 changed files with 48 additions and 19 deletions
|
|
@ -4,7 +4,7 @@
|
|||
char *recode_in (const SERVER_REC *server, const char *str, const char *target);
|
||||
char *recode_out (const SERVER_REC *server, const char *str, const char *target);
|
||||
char **recode_split(const SERVER_REC *server, const char *str,
|
||||
const char *target, int len);
|
||||
const char *target, int len, gboolean onspace);
|
||||
gboolean is_valid_charset(const char *charset);
|
||||
gboolean is_utf8(void);
|
||||
void recode_update_charset(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue