summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: e836113)
raw | patch | inline | side by side (parent: e836113)
author | Jonas Fonseca <fonseca@diku.dk> | |
Sun, 23 Sep 2007 21:51:41 +0000 (23:51 +0200) | ||
committer | Jonas Fonseca <fonseca@diku.dk> | |
Sun, 23 Sep 2007 21:51:50 +0000 (23:51 +0200) |
tig.c | patch | blob | history |
index 24f84d43b07de5a1f3006bd148c1c02e30c3fc08..620f14b39d1d0f8e5b2f31bbbed0772af311449d 100644 (file)
--- a/tig.c
+++ b/tig.c
}
static void
-open_editor(struct view *view, bool from_root, char *file)
+open_editor(bool from_root, char *file)
{
char cmd[SIZEOF_STR];
char file_sq[SIZEOF_STR];
if (!status)
return request;
- open_editor(view, status->status != '?', status->name);
+ open_editor(status->status != '?', status->name);
break;
case REQ_ENTER:
if (!stage_status.name[0])
return request;
- open_editor(view, stage_status.status != '?', stage_status.name);
+ open_editor(stage_status.status != '?', stage_status.name);
break;
case REQ_ENTER: