Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • keys.c

    r3004c9f r9b70dd4  
    282282  BIND_CMD("M-r", "reply -e",         "reply to the current message, but allow editing of recipient");
    283283  BIND_CMD("M-R", "reply -e sender",  "reply to sender of the current message, but allow editing of recipient");
    284                  
    285   BIND_CMD("w",   "openurl",          "open a URL using a webbrowser");
    286284
    287285  BIND_CMD("W",   "start-command webzephyr ", "start a webzephyr command");
     
    302300/****************************************************************/
    303301
    304 void owl_keys_recwin_prealways(int j) {
     302void owl_keys_recwin_prealways(owl_input j) {
    305303  /* Clear the message line on subsequent key presses */
    306304  owl_function_makemsg("");
    307305}
    308306
    309 void owl_keys_editwin_default(int j) {
     307void owl_keys_editwin_default(owl_input j) {
    310308  owl_editwin *e;
    311309  if (NULL != (e=owl_global_get_typwin(&g))) {
    312     owl_editwin_process_char(e, j);
     310       owl_editwin_process_char(e, j);
    313311  }
    314312}
    315313
    316 void owl_keys_editwin_postalways(int j) {
     314void owl_keys_editwin_postalways(owl_input j) {
    317315  owl_editwin *e;
    318316  if (NULL != (e=owl_global_get_typwin(&g))) {
    319317    owl_editwin_post_process_char(e, j);
    320   } 
     318  }
    321319  owl_global_set_needrefresh(&g);
    322320}
    323321
    324 void owl_keys_popless_postalways(int j) {
     322void owl_keys_popless_postalways(owl_input j) {
    325323  owl_viewwin *v = owl_global_get_viewwin(&g);
    326324  owl_popwin *pw = owl_global_get_popwin(&g);
     
    331329}
    332330
    333 void owl_keys_default_invalid(int j) {
    334   if (j==ERR) return;
    335   if (j==410) return;
     331void owl_keys_default_invalid(owl_input j) {
     332  if (j.ch==ERR) return;
     333  if (j.ch==410) return;
    336334  owl_keyhandler_invalidkey(owl_global_get_keyhandler(&g));
    337335}
Note: See TracChangeset for help on using the changeset viewer.