diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
commit | 84a05acc8c341c2be383198496764992ae971a46 (patch) | |
tree | 061887e2e1327a2d0c688cba306b8ec66b3f8477 /src/gui_photon.c | |
parent | 84e0f6ca9adcbdca254060713878ebc29faaaa65 (diff) | |
download | vim-git-84a05acc8c341c2be383198496764992ae971a46.tar.gz |
updated for version 7.3.925v7.3.925
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
Diffstat (limited to 'src/gui_photon.c')
-rw-r--r-- | src/gui_photon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui_photon.c b/src/gui_photon.c index 5db0484c9..aa99dd74a 100644 --- a/src/gui_photon.c +++ b/src/gui_photon.c @@ -61,7 +61,7 @@ static PgColor_t gui_ph_mouse_color = Pg_BLACK; static PhPoint_t gui_ph_raw_offset; static PtWidget_t *gui_ph_timer_cursor; /* handle cursor blinking */ static PtWidget_t *gui_ph_timer_timeout; /* used in gui_mch_wait_for_chars */ -static short is_timeout; /* Has the timeout occured? */ +static short is_timeout; /* Has the timeout occurred? */ /* * This is set inside the mouse callback for a right mouse @@ -1156,7 +1156,7 @@ gui_mch_init(void) PtSetArg(&args[ n++ ], Pt_ARG_POS, &pos, 0); #ifdef USE_PANEL_GROUP - /* Put in a temprary place holder title */ + /* Put in a temporary place holder title */ PtSetArg(&args[ n++ ], Pt_ARG_PG_PANEL_TITLES, &empty_title, 1); gui.vimPanelGroup = PtCreateWidget(PtPanelGroup, gui.vimWindow, n, args); @@ -1527,7 +1527,7 @@ gui_mch_dialog( /* There is one less separator than buttons, so bump up the button count */ button_count = 1; - /* Count string length and number of seperators */ + /* Count string length and number of separators */ for (str = buttons; *str; str++) { len++; |