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 279082a9da0bb5a477400b3766e7f46416f7dad5
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Tue Sep 12 22:44:37 2023 +0100
split out cut vs copy in copy func
---
src/efm/efm.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/efm/efm.c b/src/efm/efm.c
index e74cfe6..7bbe87e 100644
--- a/src/efm/efm.c
+++ b/src/efm/efm.c
@@ -86,8 +86,16 @@ _cnp_copy_files(Smart_Data *sd)
sd->o_smart);
}
}
- if (str) printf("XXX: COPY: [%s]\n", str);
- else printf("XXX: COPY: no str\n");
+ if (sd->cnp_cut)
+ {
+ if (str) printf("XXX: CUT: [%s]\n", str);
+ else printf("XXX: CUT: no str\n");
+ }
+ else
+ {
+ if (str) printf("XXX: COPY: [%s]\n", str);
+ else printf("XXX: COPY: no str\n");
+ }
eina_strbuf_free(strbuf);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.