aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/string-utils.h
diff options
context:
space:
mode:
authorRobin Haberkorn <rhaberkorn@fmsbw.de>2025-12-23 13:54:17 +0100
committerRobin Haberkorn <rhaberkorn@fmsbw.de>2025-12-23 13:54:17 +0100
commit0c89fb700957e411885e7e7835e15f441e8b5e84 (patch)
tree56d756d6fa1923a5198504a322ec9c67cf274922 /src/string-utils.h
parent2592ef74ab2eba57c32fe21993ce01e9698b106f (diff)
fixed clicking the "(Unnamed)" buffer in 0EB popupsHEADmaster-fmsbw-cimaster
* When constructing the list of popup items, the unnamed buffer is stored as the empty string instead of a prerendered "(Unnamed)". Using the empty string simplifies autocompletions, which will actually have to insert nothing at all (in addition to terminating the string). * Since unnamed buffers are now special in the popup list, we can render them with special icons as well. Currently, only on Curses we use a file symbol with a question mark. There doesn't appear to be a fitting standard Freedesktop icon to use on GTK and there isn't even any fitting standard emblem to lay over the default file icon.
Diffstat (limited to 'src/string-utils.h')
-rw-r--r--src/string-utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string-utils.h b/src/string-utils.h
index 2491d07..af2c8a1 100644
--- a/src/string-utils.h
+++ b/src/string-utils.h
@@ -102,7 +102,7 @@ teco_string_init(teco_string_t *target, const gchar *str, gsize len)
static inline void
teco_string_init_chunk(teco_string_t *target, const gchar *str, gssize len, GStringChunk *chunk)
{
- target->data = g_string_chunk_insert_len(chunk, str, len);
+ target->data = g_string_chunk_insert_len(chunk, str ? : "", len);
target->len = len;
}