aboutsummaryrefslogtreecommitdiff
path: root/vis.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2015-04-22 12:43:00 +0200
committerMarc André Tanner <mat@brain-dump.org>2015-04-22 12:43:00 +0200
commitacb864cdc5b24e54b0b2b08e06d706ccaa3fa4c1 (patch)
tree25736ea72cfbbaac0dbe21772cd6ba3d7fe47f9e /vis.c
parent7318931acca4e6928a8014dd00dc66f6f061b6c4 (diff)
downloadvis-acb864cdc5b24e54b0b2b08e06d706ccaa3fa4c1.tar.gz
vis-acb864cdc5b24e54b0b2b08e06d706ccaa3fa4c1.tar.xz
Yet more renames (EditorWin -> Win)
Diffstat (limited to 'vis.c')
-rw-r--r--vis.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/vis.c b/vis.c
index 0fdd11d..6ce9004 100644
--- a/vis.c
+++ b/vis.c
@@ -417,7 +417,7 @@ static bool cmd_saveas(Filerange*, enum CmdOpt, const char *argv[]);
static void action_reset(Action *a);
static void switchmode_to(Mode *new_mode);
static bool vis_window_new(const char *file);
-static bool vis_window_split(EditorWin *win);
+static bool vis_window_split(Win *win);
#include "config.h"
@@ -1444,7 +1444,7 @@ static bool cmd_open(Filerange *range, enum CmdOpt opt, const char *argv[]) {
return true;
}
-static bool is_view_closeable(EditorWin *win) {
+static bool is_view_closeable(Win *win) {
if (!text_modified(win->file->text))
return true;
return win->file->refcount > 1;
@@ -1455,7 +1455,7 @@ static void info_unsaved_changes(void) {
}
static bool cmd_edit(Filerange *range, enum CmdOpt opt, const char *argv[]) {
- EditorWin *oldwin = vis->win;
+ Win *oldwin = vis->win;
if (!(opt & CMD_OPT_FORCE) && !is_view_closeable(oldwin)) {
info_unsaved_changes();
return false;
@@ -1493,7 +1493,7 @@ static bool cmd_bdelete(Filerange *range, enum CmdOpt opt, const char *argv[]) {
info_unsaved_changes();
return false;
}
- for (EditorWin *next, *win = vis->windows; win; win = next) {
+ for (Win *next, *win = vis->windows; win; win = next) {
next = win->next;
if (win->file->text == txt)
editor_window_close(win);
@@ -1504,7 +1504,7 @@ static bool cmd_bdelete(Filerange *range, enum CmdOpt opt, const char *argv[]) {
}
static bool cmd_qall(Filerange *range, enum CmdOpt opt, const char *argv[]) {
- for (EditorWin *next, *win = vis->windows; win; win = next) {
+ for (Win *next, *win = vis->windows; win; win = next) {
next = win->next;
if (!text_modified(vis->win->file->text) || (opt & CMD_OPT_FORCE))
editor_window_close(win);
@@ -1837,7 +1837,7 @@ static bool vis_window_new_fd(int fd) {
return true;
}
-static bool vis_window_split(EditorWin *win) {
+static bool vis_window_split(Win *win) {
if (!editor_window_split(win))
return false;
Syntax *s = view_syntax_get(vis->win->view);