comparison src/gui.c @ 824:8dd456c1e283 v7.0c13

updated for version 7.0c13
author vimboss
date Sun, 09 Apr 2006 21:54:49 +0000
parents 23f82b5d2814
children 6675076019ae
comparison
equal deleted inserted replaced
823:9ab23f1e137f 824:8dd456c1e283
589 EMSG(_("E599: Value of 'imactivatekey' is invalid")); 589 EMSG(_("E599: Value of 'imactivatekey' is invalid"));
590 #endif 590 #endif
591 /* When 'cmdheight' was set during startup it may not have taken 591 /* When 'cmdheight' was set during startup it may not have taken
592 * effect yet. */ 592 * effect yet. */
593 if (p_ch != 1L) 593 if (p_ch != 1L)
594 command_height(-1L); 594 command_height();
595 595
596 return; 596 return;
597 } 597 }
598 598
599 error2: 599 error2:
3495 string[0] = nr; 3495 string[0] = nr;
3496 add_to_input_buf_csi(string, 1); 3496 add_to_input_buf_csi(string, 1);
3497 return TRUE; 3497 return TRUE;
3498 } 3498 }
3499 3499
3500 /*
3501 * Send a tabline menu event
3502 */
3503 void
3504 send_tabline_menu_event(tabidx, event)
3505 int tabidx;
3506 int event;
3507 {
3508 char_u string[3];
3509
3510 string[0] = CSI;
3511 string[1] = KS_TABMENU;
3512 string[2] = KE_FILLER;
3513 add_to_input_buf(string, 3);
3514 string[0] = tabidx;
3515 string[1] = (char_u)(long)event;
3516 add_to_input_buf_csi(string, 2);
3517 }
3518
3500 #endif 3519 #endif
3501 3520
3502 /* 3521 /*
3503 * Scrollbar stuff: 3522 * Scrollbar stuff:
3504 */ 3523 */