Changeset 818f19c for keys.c


Ignore:
Timestamp:
Sep 18, 2010, 5:07:39 PM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
1d74663
Parents:
005eae5
git-author:
David Benjamin <davidben@mit.edu> (08/07/10 15:55:04)
git-committer:
David Benjamin <davidben@mit.edu> (09/18/10 17:07:39)
Message:
Rename owl_global_get_typwin to owl_global_current_typwin

The new name is more explicitly the currently active typwin.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • keys.c

    r5cc7e5e r818f19c  
    328328void owl_keys_editwin_default(owl_input j) {
    329329  owl_editwin *e;
    330   if (NULL != (e=owl_global_get_typwin(&g))) {
     330  if (NULL != (e=owl_global_current_typwin(&g))) {
    331331       owl_editwin_process_char(e, j);
    332332  }
     
    335335void owl_keys_editwin_postalways(owl_input j) {
    336336  owl_editwin *e;
    337   if (NULL != (e=owl_global_get_typwin(&g))) {
     337  if (NULL != (e=owl_global_current_typwin(&g))) {
    338338    owl_editwin_post_process_char(e, j);
    339339  }
Note: See TracChangeset for help on using the changeset viewer.