summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2005-01-05 22:10:30 +0000
committervimboss <devnull@localhost>2005-01-05 22:10:30 +0000
commit11abbacf305726aad9140bb238b6cfc7736eb13e (patch)
tree64740b2f0f93da57902fcd631905c69709c91c35
parentbde80738e9301f95455458933261a5ee932344b6 (diff)
downloadvim-11abbacf305726aad9140bb238b6cfc7736eb13e.tar.gz
updated for version 7.0031
-rw-r--r--runtime/doc/insert.txt4
-rw-r--r--src/gui_kde_wid.cc2
-rw-r--r--src/proto/ex_eval.pro2
3 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index e738b83b..579068c5 100644
--- a/runtime/doc/insert.txt
+++ b/runtime/doc/insert.txt
@@ -1,4 +1,4 @@
-*insert.txt* For Vim version 7.0aa. Last change: 2004 Dec 21
+*insert.txt* For Vim version 7.0aa. Last change: 2005 Jan 05
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -975,7 +975,7 @@ These two commands will keep on asking for lines, until you type a line
containing only a ".". Watch out for lines starting with a backslash, see
|line-continuation|.
NOTE: ":append" and ":insert" don't work properly in between ":if" and
-":endif".
+":endif", ":for" and ":endfor", ":while" and ":endwhile".
*:start* *:startinsert*
:star[tinsert][!] Start Insert mode just after executing this command.
diff --git a/src/gui_kde_wid.cc b/src/gui_kde_wid.cc
index 52d1c9ea..abaaa502 100644
--- a/src/gui_kde_wid.cc
+++ b/src/gui_kde_wid.cc
@@ -1540,7 +1540,7 @@ SBPool::create(GuiScrollbar * sb, int orient)//{{{
}
connect(sb->w, SIGNAL(valueChanged(int)), &mapper, SLOT(map()));
- mapper.setMapping(sb->w, (int)sb);
+ mapper.setMapping(sb->w, (long)sb);
}//}}}
diff --git a/src/proto/ex_eval.pro b/src/proto/ex_eval.pro
index 8156c7aa..5bf22fa0 100644
--- a/src/proto/ex_eval.pro
+++ b/src/proto/ex_eval.pro
@@ -27,5 +27,5 @@ void enter_cleanup __ARGS((cleanup_T *csp));
void leave_cleanup __ARGS((cleanup_T *csp));
int cleanup_conditionals __ARGS((struct condstack *cstack, int searched_cond, int inclusive));
void ex_endfunction __ARGS((exarg_T *eap));
-int has_while_cmd __ARGS((char_u *p));
+int has_loop_cmd __ARGS((char_u *p));
/* vim: set ft=c : */