Changeset 3f11c00


Ignore:
Timestamp:
Jul 14, 2010, 1:27:34 AM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
8bba1ae
Parents:
23b6c11
Message:
Rename oe_set_curswin to oe_set_window
File:
1 edited

Legend:

Unmodified
Added
Removed
  • editwin.c

    r0b9e607 r3f11c00  
    4242};
    4343
    44 static void oe_set_curswin(owl_editwin *e, owl_window *w, int winlines, int wincols);
     44static void oe_set_window(owl_editwin *e, owl_window *w, int winlines, int wincols);
    4545static void oe_redraw(owl_window *win, WINDOW *curswin, void *user_data);
    4646static void oe_reframe(owl_editwin *e);
     
    150150
    151151  _owl_editwin_init(e, winlines, wincols, style, hist);
    152   oe_set_curswin(e, win, winlines, wincols);
     152  oe_set_window(e, win, winlines, wincols);
    153153  return e;
    154154}
     
    160160}
    161161
    162 static void oe_set_curswin(owl_editwin *e, owl_window *w, int winlines, int wincols)
     162static void oe_set_window(owl_editwin *e, owl_window *w, int winlines, int wincols)
    163163{
    164164  e->win=w;
Note: See TracChangeset for help on using the changeset viewer.