summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d67ba10)
raw | patch | inline | side by side (parent: d67ba10)
author | Jonas Fonseca <fonseca@diku.dk> | |
Tue, 1 Jun 2010 00:37:49 +0000 (20:37 -0400) | ||
committer | Jonas Fonseca <fonseca@diku.dk> | |
Tue, 1 Jun 2010 13:02:05 +0000 (09:02 -0400) |
tig.c | patch | blob | history |
index 08ef0b4e14e5e964b46b2ece681720249eab8d4c..b17d8dd07b50607a0a40c44c4ba236aa76810e4a 100644 (file)
--- a/tig.c
+++ b/tig.c
}
static bool
-io_run_append(const char **argv, enum format_flags flags, int fd)
+io_run_append(const char **argv, int fd)
{
struct io io = {};
- if (!io_format(&io, NULL, IO_AP, argv, flags)) {
+ if (!io_format(&io, NULL, IO_AP, argv, FORMAT_NONE)) {
close(fd);
return FALSE;
}
}
static bool
-io_run_rd(struct io *io, const char **argv, const char *dir, enum format_flags flags)
+io_run_rd(struct io *io, const char **argv, const char *dir)
{
- return io_format(io, dir, IO_RD, argv, flags) && io_start(io);
+ return io_format(io, dir, IO_RD, argv, FORMAT_NONE) && io_start(io);
}
static bool
{
struct io io = {};
- return io_run_rd(&io, argv, NULL, FORMAT_NONE)
- && io_read_buf(&io, buf, bufsize);
+ return io_run_rd(&io, argv, NULL) && io_read_buf(&io, buf, bufsize);
}
static int
return TRUE;
}
- if (!io_run_rd(&io, log_file, opt_cdup, FORMAT_NONE)) {
+ if (!io_run_rd(&io, log_file, opt_cdup)) {
report("Failed to load tree data");
return TRUE;
}
if (fd == -1)
report("Failed to create temporary file");
- else if (!io_run_append(blob_argv, FORMAT_NONE, fd))
+ else if (!io_run_append(blob_argv, fd))
report("Failed to save blob data to file");
else
open_editor(file);
};
if (!string_format(path, "%s:%s", opt_ref, opt_file) ||
- !io_run_rd(&view->io, blame_cat_file_argv, opt_cdup, FORMAT_NONE))
+ !io_run_rd(&view->io, blame_cat_file_argv, opt_cdup))
return FALSE;
}
if (view->lines == 0 && !view->prev)
die("No blame exist for %s", view->vid);
- if (view->lines == 0 || !io_run_rd(&io, blame_argv, opt_cdup, FORMAT_NONE)) {
+ if (view->lines == 0 || !io_run_rd(&io, blame_argv, opt_cdup)) {
report("Failed to load blame data");
return TRUE;
}
"--simplify-by-decoration", "--all", NULL
};
- if (!io_run_rd(&view->io, branch_log, NULL, FORMAT_NONE)) {
+ if (!io_run_rd(&view->io, branch_log, NULL)) {
report("Failed to load branch data");
return TRUE;
}