aboutsummaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorJohn Schmidt <john.schmidt.h@gmail.com>2014-03-17 20:30:12 +0100
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-05 10:01:22 -0300
commit807494578888d12ce55db67d73948bef208c2695 (patch)
tree23db320214e340b582a60915f5d8ccfca8a291a9 /src/window.c
parentacf5757831d2e6bfa325c1fe508e636d9030c6d5 (diff)
downloadrneovim-807494578888d12ce55db67d73948bef208c2695.tar.gz
rneovim-807494578888d12ce55db67d73948bef208c2695.tar.bz2
rneovim-807494578888d12ce55db67d73948bef208c2695.zip
Remove python, perl, lua, ruby
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/window.c b/src/window.c
index 699114978b..dbf0bf06ac 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3298,8 +3298,6 @@ void win_goto(win_T *wp)
}
-#if (defined(FEAT_WINDOWS) && (defined(FEAT_PYTHON) || defined(FEAT_PYTHON3))) \
- || defined(PROTO)
/*
* Find the tabpage for window "win".
*/
@@ -3315,7 +3313,6 @@ tabpage_T *win_find_tabpage(win_T *win)
return tp;
return NULL;
}
-#endif
/*
* Move to window above or below "count" times.
@@ -5171,8 +5168,6 @@ static win_T *restore_snapshot_rec(frame_T *sn, frame_T *fr)
}
-#if defined(FEAT_EVAL) || defined(FEAT_PYTHON) || defined(FEAT_PYTHON3) \
- || defined(PROTO)
/*
* Set "win" to be the curwin and "tp" to be the current tab page.
* restore_win() MUST be called to undo.
@@ -5257,7 +5252,6 @@ void restore_buffer(buf_T *save_curbuf)
++curbuf->b_nwindows;
}
}
-#endif
/*