]> git.armaanb.net Git - stagit.git/blobdiff - stagit.c
Redirect stdout to correct file.
[stagit.git] / stagit.c
index b3f2e161c71a7630b2c26fa0779483ac6eac7cdb..9a8ccd0245b1e55af35fad1dd86f3477ec779e22 100644 (file)
--- a/stagit.c
+++ b/stagit.c
@@ -397,24 +397,30 @@ writefooter(FILE *fp)
 int
 syntax_highlight(const char *filename, FILE *fp, const char *s, size_t len)
 {
+       // Copy STDOUT
+       int stdout_copy = dup(1);
+       // Redirect STDOUT
+       dup2(fileno(fp), 1);
+
        // Ruby script for syntax highlighting.
        FILE *child = popen("./highlight", "w");
-       // Give filename:
+       if (child == NULL) {
+               printf("child is null: %s", strerror(errno));
+               exit(1);
+       }
+       // Give filename through STDIN:
        fprintf(child, "%s\n", filename);
-       // Give code to highlight:
+       // Give code to highlight through STDIN:
        int lc;
        size_t i;
        for (i = 0; *s && i < len; s++, i++) {
                if (*s == '\n') lc++;
-               fputc(*s, child);
+               fprintf(child, "%c", *s);
        }
 
-       // Write returned HTML to the HTML file.
-       char c;
-       while ((c = fgetc(child)) != EOF)
-               fputc(c, fp);
-
        pclose(child);
+       // Give back STDOUT.
+       dup2(stdout_copy, 1);
        return lc;
 }