This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efm2.
View the commit online.
commit 4a92023f03b2043eb844cf6156ef4910e951e982
Author: Carsten Haitzler (Rasterman) <[email protected]>
AuthorDate: Sun Feb 8 15:42:54 2026 +0000
complete - dont add / to non-dir files
---
src/shared/util.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/shared/util.c b/src/shared/util.c
index ea3cf16..0df05fd 100644
--- a/src/shared/util.c
+++ b/src/shared/util.c
@@ -113,7 +113,8 @@ util_complete(const char *str, Complete_Type type)
if (buf)
{
eina_strbuf_append(buf, info->path);
- eina_strbuf_append(buf, "/");
+ if (ecore_file_is_dir(info->path))
+ eina_strbuf_append(buf, "/");
ret = strdup(eina_strbuf_string_get(buf));
// add this path to our options for complete
opts = eina_list_append(opts, ret);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.