This is the follow up to #968 You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/969
-- Commit Summary --
* GeanyVC: Add support for Fossil SCM (fossil-scm.org)
-- File Changes --
M geanyvc/README (8) M geanyvc/src/Makefile.am (5) M geanyvc/src/geanyvc.c (14) M geanyvc/src/unittests.c (3) A geanyvc/src/vc_fossil.c (590) M po/POTFILES.in (1) M po/be.po (4) M po/ca.po (4) M po/da.po (4) M po/de.po (4) M po/el.po (4) M po/es.po (4) M po/fr.po (4) M po/gl.po (4) M po/it.po (4) M po/ja.po (4) M po/kk.po (4) M po/nl.po (4) M po/pt.po (4) M po/pt_BR.po (4) M po/ru.po (4) M po/tr.po (4) M po/zh_CN.po (4)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/969.patch https://github.com/geany/geany-plugins/pull/969.diff
@frlan commented on this pull request.
+ if (std_out) + { + std_out1 = *std_out; + *std_out = NULL; + } + if (std_err) + { + std_err1 = *std_err; + *std_err = NULL; + } + + ret = execute_custom_command(base_dir, (const gchar **) argv, (const gchar **) NULL, + std_out, std_err, path, list, message); + + if (std_out1)
ActuallyI I'm unsure what this is doing.
@nomadbyte commented on this pull request.
+ if (std_out) + { + std_out1 = *std_out; + *std_out = NULL; + } + if (std_err) + { + std_err1 = *std_err; + *std_err = NULL; + } + + ret = execute_custom_command(base_dir, (const gchar **) argv, (const gchar **) NULL, + std_out, std_err, path, list, message); + + if (std_out1)
This appends the output of the second command to the output from the first command.
@frlan commented on this pull request.
+ if (std_out) + { + std_out1 = *std_out; + *std_out = NULL; + } + if (std_err) + { + std_err1 = *std_err; + *std_err = NULL; + } + + ret = execute_custom_command(base_dir, (const gchar **) argv, (const gchar **) NULL, + std_out, std_err, path, list, message); + + if (std_out1)
Ah. Somehow went confused
Merged #969 into master.
github-comments@lists.geany.org