]> granicus.if.org Git - vim/commitdiff
updated for version 7.0031
authorBram Moolenaar <Bram@vim.org>
Wed, 5 Jan 2005 22:10:30 +0000 (22:10 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 5 Jan 2005 22:10:30 +0000 (22:10 +0000)
runtime/doc/insert.txt
src/gui_kde_wid.cc
src/proto/ex_eval.pro

index e738b83ba063b401d040ec614a3616ae91b08265..579068c5865dfd060ee1c78e0d65d96a9385a176 100644 (file)
@@ -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.
index 52d1c9eadc0bee23435db61b5a877dc44f9703cd..abaaa50277f29b0063c3a18b199b5fb179de8c17 100644 (file)
@@ -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);
 }//}}}
 
 
index 8156c7aa7475c1b7218abc3c2453b558d7208a10..5bf22fa04b9d04b8c4fa7489e7fed3129d9f8095 100644 (file)
@@ -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 : */