summaryrefslogtreecommitdiff
path: root/src/screen.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-05-10 18:19:11 +0000
committerBram Moolenaar <Bram@vim.org>2007-05-10 18:19:11 +0000
commit2c7a763832663d5878ff37a58c81fbe95527084a (patch)
treede001b1fcec1cf19bd23211eaa6dde7a0701c13b /src/screen.c
parent720c710091ba23dcbfca46766d87b4bb57dbc892 (diff)
downloadvim-git-2c7a763832663d5878ff37a58c81fbe95527084a.tar.gz
updated for version 7.1b
Diffstat (limited to 'src/screen.c')
-rw-r--r--src/screen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/screen.c b/src/screen.c
index eb7a63ae2..3e54ba677 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -37,7 +37,7 @@
*
* update_screen() is the function that updates all windows and status lines.
* It is called form the main loop when must_redraw is non-zero. It may be
- * called from other places when an immediated screen update is needed.
+ * called from other places when an immediate screen update is needed.
*
* The part of the buffer that is displayed in a window is set with:
* - w_topline (first buffer line in window)
@@ -7614,7 +7614,7 @@ windgoto(row, col)
int goto_cost;
int attr;
-#define GOTO_COST 7 /* asssume a term_windgoto() takes about 7 chars */
+#define GOTO_COST 7 /* assume a term_windgoto() takes about 7 chars */
#define HIGHL_COST 5 /* assume unhighlight takes 5 chars */
#define PLAN_LE 1
@@ -7652,7 +7652,7 @@ windgoto(row, col)
* Don't do this if the cursor went beyond the last column, the cursor
* position is unknown then (some terminals wrap, some don't )
*
- * First check if the highlighting attibutes allow us to write
+ * First check if the highlighting attributes allow us to write
* characters to move the cursor to the right.
*/
if (row >= screen_cur_row && screen_cur_col < Columns)