]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-216 v7.2.216
authorBram Moolenaar <Bram@vim.org>
Wed, 24 Jun 2009 15:51:37 +0000 (15:51 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 24 Jun 2009 15:51:37 +0000 (15:51 +0000)
runtime/doc/autocmd.txt
runtime/doc/if_mzsch.txt
src/if_mzsch.c
src/version.c

index 836f7d21287788e99cec5def9caaf83c54e090bf..14d64ed9b589d4b6a65008fc7a1df89201453b98 100644 (file)
@@ -335,6 +335,8 @@ BufDelete                   Before deleting a buffer from the buffer list.
                                NOTE: When this autocommand is executed, the
                                current buffer "%" may be different from the
                                buffer being deleted "<afile>" and "<abuf>".
+                               Don't change to another buffer, it will cause
+                               problems.
                                                        *BufEnter*
 BufEnter                       After entering a buffer.  Useful for setting
                                options for a file type.  Also executed when
@@ -397,6 +399,8 @@ BufUnload                   Before unloading a buffer.  This is when the
                                NOTE: When this autocommand is executed, the
                                current buffer "%" may be different from the
                                buffer being unloaded "<afile>".
+                               Don't change to another buffer, it will cause
+                               problems.
                                                        *BufWinEnter*
 BufWinEnter                    After a buffer is displayed in a window.  This
                                can be when the buffer is loaded (after
@@ -428,6 +432,8 @@ BufWipeout                  Before completely deleting a buffer.  The
                                NOTE: When this autocommand is executed, the
                                current buffer "%" may be different from the
                                buffer being deleted "<afile>".
+                               Don't change to another buffer, it will cause
+                               problems.
                                                *BufWrite* *BufWritePre*
 BufWrite or BufWritePre                Before writing the whole buffer to a file.
                                                        *BufWriteCmd*
@@ -748,8 +754,10 @@ SwapExists                 Detected an existing swap file when starting
                                        'a'     abort, like hitting CTRL-C
                                When set to an empty string the user will be
                                asked, as if there was no SwapExists autocmd.
-                               Note: Do not try to change the buffer, the
-                               results are unpredictable.
+                                                       *E812*
+                               It is not allowed to change to another buffer,
+                               change a buffer name or change directory
+                               here.
                                                        *Syntax*
 Syntax                         When the 'syntax' option has been set.  The
                                pattern is matched against the syntax name.
index d22544419878433ed8deaa1358bb05d65727f789..ceecdba3028e858d70f11fa60b711f26ad8572a1 100644 (file)
@@ -1,4 +1,4 @@
-*if_mzsch.txt*  For Vim version 7.2.  Last change: 2009 May 26
+*if_mzsch.txt*  For Vim version 7.2.  Last change: 2009 Jun 24
 
 
                  VIM REFERENCE MANUAL    by Sergey Khorev
@@ -231,7 +231,7 @@ Windows                                                         *mzscheme-window*
     (set-cursor (line . col) [window])  Set cursor position.
 
 ==============================================================================
-5. Dynamic loading                                 *mzscheme-dynamic* *E812*
+5. Dynamic loading                                 *mzscheme-dynamic* *E815*
 
 On MS-Windows the MzScheme libraries can be loaded dynamically. The |:version|
 output then includes |+mzscheme/dyn|.
index 017f8041edafdc5f31dd27636f0902acf78617ba..1658fe43e3f316672de13c0fd6d46fd1167f99f8 100644 (file)
@@ -1040,7 +1040,7 @@ mzscheme_init(void)
 #ifdef DYNAMIC_MZSCHEME
        if (!mzscheme_enabled(TRUE))
        {
-           EMSG(_("E812: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
+           EMSG(_("E815: Sorry, this command is disabled, the MzScheme libraries could not be loaded."));
            return -1;
        }
 #endif
index e4ac33303e138f79dbdca966551d4f6238d6868b..0fd4b726472b6b6f0b39b1a74c593c8d35bf9bba 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    216,
 /**/
     215,
 /**/