summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-06-13buflist: add variable ${merged} in /help buflistSébastien Helleu
2017-06-13buflist: add variable ${merged} in bar item evaluationSébastien Helleu
2017-06-12alias: fix message in case of error in command /alias addcompletionSébastien Helleu
2017-06-12relay: add option "start" in command /relaySébastien Helleu
2017-06-10core: free use of pointer after free in case of error in function ↵Sébastien Helleu
string_dyn_concat
2017-06-10core: improve speed of nicklist bar item callbackSébastien Helleu
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.
2017-06-10core, plugins: fix conditions to insert elements in linked listsSébastien Helleu
This removes scan-build warnings about dereference of last_xxx null pointers.
2017-06-10core: remove unused function gui_window_clear_weechat (issue #1012)Sébastien Helleu
2017-06-10core: remove unused function upgrade_file_read_string_utf8 (issue #1012)Sébastien Helleu
2017-06-10core: remove unused functions secure_search_hash_algo and ↵Sébastien Helleu
secure_search_cipher (issue #1012)
2017-06-10core: remove unused function proxy_search_with_option_name (issue #1012)Sébastien Helleu
2017-06-10Merge pull request #1015 from Neui/remove-unused-irc-storesSébastien Helleu
irc: Remove unnecessary stores
2017-06-10trigger: if hashmap creation failed, don't use tagsNeui
If hashmap creation fails (eg. not enough memory), it jumps to the label "end", where it checks the pointer tags, that hadn't been initialized before. The simple fix is to initialize it before creating the hashmap.
2017-06-10core: fix bind of keys with space key, like alt+space (bug #32133)Sébastien Helleu
2017-06-09irc: Remove unnecessary storesNeui
2017-06-09core: remove unused functions config_file_config_insert and ↵Sébastien Helleu
config_file_section_insert_in_config (issue #1012)
2017-06-08buflist: add option buflist.look.auto_scroll (issue #332)Sébastien Helleu
2017-06-08api: allow update of variables "scroll_x" and "scroll_y" in bar_window with ↵Sébastien Helleu
function hdata_update
2017-06-07core: remove unused function command_secure_display_data (issue #1012)Sébastien Helleu
2017-06-06buflist: return 0 if buffers are equal in sort functionSébastien Helleu
This is better for symmetry of comparison callback (comparing buffer1 and buffer2 will give same as comparing buffer2 and bufer1). Thanks to Simmo Saan for reporting the problem.
2017-06-06core: remove unused functions gui_bar_get_min_width and ↵Sébastien Helleu
gui_bar_get_min_height (issue #1012)
2017-06-05buflist: display a warning when the script "buffers.pl" is loadedSébastien Helleu
2017-06-03relay: remove callback unused after d2ff46fa69ddfd999ce7a405e336221e6197738dSimmo Saan
2017-06-03gui: remove callback unused after 0b2be21f1f42c2a1b0c200b339d7d2e59595da4cSimmo Saan
2017-06-03core, irc: remove unused structsSimmo Saan
2017-06-03gui: remove completion hdata made unusable by arraylist usageSimmo Saan
2017-06-03relay: fix relay.network.bind_address change callback not being calledSimmo Saan
2017-06-03core, script: remove unused config section variablesSimmo Saan
2017-06-03gui, buflist: remove declared but undefined functionsSimmo Saan
2017-06-03core, gui: remove declared but unused global variablesSimmo Saan
2017-06-03exec, fifo, irc: remove unused #define-sSimmo Saan
2017-06-03gui: fix gui-focus.h header guardSimmo Saan
2017-06-03core: forward declare structs to avoid implicit declarationsSimmo Saan
2017-06-03gui: remove non-standard enum forward declarationSimmo Saan
2017-06-03relay: remove local variables used only for sizeofSimmo Saan
2017-06-03core: fix fifo_fd_cb declared without argumentsSimmo Saan
2017-06-03core: fix gui_color_dump called with excess argumentsSimmo Saan
2017-06-03irc: fix irc_server_autojoin_channels declared without argumentsSimmo Saan
2017-06-03gui: fix gui_key_default_bindings declared without argumentsSimmo Saan
2017-06-03core: fix infinite loop when the terminal is closed on the secure password ↵Sébastien Helleu
prompt (closes #1010)
2017-06-02buflist: fix typo in /help buflistSébastien Helleu
2017-06-02buflist: fix type of IRC server/channel pointersSébastien Helleu
2017-06-02buflist: replace IRC struct by "void *" for IRC server/channel pointersSébastien Helleu
2017-06-02trigger: add "irc_server" and "irc_channel" pointers in data for IRC ↵Sébastien Helleu
signal/modifier hooks
2017-06-01Merge pull request #1006 from mkoskar/dev2Sébastien Helleu
core: remove config_look_hotlist_add_buffer_if_away completely
2017-06-01buflist: fix long mouse gesturesSébastien Helleu
2017-06-01core: remove config_look_hotlist_add_buffer_if_away completelyMiroslav Koskar
2017-05-31buflist: add missing ${hotlist_priority} in /help buflistSébastien Helleu
2017-05-31buflist: add missing ${number_displayed} in /help buflistSébastien Helleu
2017-05-30buflist: add support of char "~" in option buflist.look.sort for case ↵Sébastien Helleu
insensitive comparison