Changeset 3f11c00
- Timestamp:
- Jul 14, 2010, 1:27:34 AM (14 years ago)
- Branches:
- master, release-1.10, release-1.7, release-1.8, release-1.9
- Children:
- 8bba1ae
- Parents:
- 23b6c11
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
editwin.c
r0b9e607 r3f11c00 42 42 }; 43 43 44 static void oe_set_ curswin(owl_editwin *e, owl_window *w, int winlines, int wincols);44 static void oe_set_window(owl_editwin *e, owl_window *w, int winlines, int wincols); 45 45 static void oe_redraw(owl_window *win, WINDOW *curswin, void *user_data); 46 46 static void oe_reframe(owl_editwin *e); … … 150 150 151 151 _owl_editwin_init(e, winlines, wincols, style, hist); 152 oe_set_ curswin(e, win, winlines, wincols);152 oe_set_window(e, win, winlines, wincols); 153 153 return e; 154 154 } … … 160 160 } 161 161 162 static void oe_set_ curswin(owl_editwin *e, owl_window *w, int winlines, int wincols)162 static void oe_set_window(owl_editwin *e, owl_window *w, int winlines, int wincols) 163 163 { 164 164 e->win=w;
Note: See TracChangeset
for help on using the changeset viewer.