diff options
-rw-r--r-- | ChangeLog.adoc | 1 | ||||
-rw-r--r-- | src/gui/gui-hotlist.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog.adoc b/ChangeLog.adoc index c654f156a..52aad9365 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -38,6 +38,7 @@ New features:: Bug fixes:: + * core: add missing hdata name "buffer" in hdata "hotlist" * core: fix reset to initial scroll position after search of text in buffer (issue #2093) * core: add missing mouse events "alt-ctrl-button2" and "alt-ctrl-button3" * core: remove trailing directory separators in home directories (issue #2070) diff --git a/src/gui/gui-hotlist.c b/src/gui/gui-hotlist.c index 56bf5fe7f..8b1bbc467 100644 --- a/src/gui/gui-hotlist.c +++ b/src/gui/gui-hotlist.c @@ -748,7 +748,7 @@ gui_hotlist_hdata_hotlist_cb (const void *pointer, void *data, HDATA_VAR(struct t_gui_hotlist, priority, INTEGER, 0, NULL, NULL); HDATA_VAR(struct t_gui_hotlist, creation_time.tv_sec, TIME, 0, NULL, NULL); HDATA_VAR(struct t_gui_hotlist, creation_time.tv_usec, LONG, 0, NULL, NULL); - HDATA_VAR(struct t_gui_hotlist, buffer, POINTER, 0, NULL, NULL); + HDATA_VAR(struct t_gui_hotlist, buffer, POINTER, 0, NULL, "buffer"); HDATA_VAR(struct t_gui_hotlist, count, INTEGER, 0, GUI_HOTLIST_NUM_PRIORITIES_STR, NULL); HDATA_VAR(struct t_gui_hotlist, prev_hotlist, POINTER, 0, NULL, hdata_name); HDATA_VAR(struct t_gui_hotlist, next_hotlist, POINTER, 0, NULL, hdata_name); |