Age | Commit message (Collapse) | Author |
|
|
|
From the getdtablesize(3) man page:
It is not specified in POSIX.1; portable applications should
employ sysconf(_SC_OPEN_MAX) instead of this call.
Specifically, this fixes a compilation problem on Android.
|
|
|
|
|
|
|
|
|
|
|
|
#1120)
The optional command line option "--daemon" runs WeeChat like a daemon
(fork, new process group, file descriptors closed).
|
|
|
|
|
|
|
|
|
|
This option is used to force partial completion on specific templates
(for now only "config_options").
|
|
|
|
|
|
(closes #1092)
|
|
remove keys
|
|
#1079)
|
|
sub-groups (closes #1079)
|
|
This fixes a compiler warning, in some cases wattr_get may not initialize the
variables.
|
|
|
|
|
|
The default value is 0 (legacy behavior).
When it is set to 1, an empty input (just by pressing Return with nothing in
input) is sent to the input callback, which receives an empty string.
|
|
|
|
|
|
|
|
It's faster to use a string with dynamic size, rather than looping on the whole
nicklist to compute the length of result string, before looping again to build
the string.
|
|
This removes scan-build warnings about dereference of last_xxx null pointers.
|
|
|
|
|
|
function hdata_update
|
|
gui_bar_get_min_height (issue #1012)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prompt (closes #1010)
|
|
Variables base_word and nick can not be NULL here.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This fixes two problems:
- stop before max char displayed with wide chars
- preserve combining chars in the output
Before the fix (wrong):
>> ${cutscr:3,+,こんにちは世界}
== [こん+]
>> ${cutscr:1,+,a${\u0308}}
== [a+]
After the fix (OK):
>> ${cutscr:3,+,こんにちは世界}
== [こ+]
>> ${cutscr:1,+,a${\u0308}}
== [ä]
|
|
gui_bar_check_conditions
|
|
|