[vim/f19] - patchlevel 857

Karsten Hopp karsten at fedoraproject.org
Mon Apr 15 15:05:50 UTC 2013


commit ce9b31f8a388dc44d283f0e65ba39f8c91424b06
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Apr 15 17:02:19 2013 +0200

    - patchlevel 857

 7.3.857 |   91 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 91 insertions(+), 0 deletions(-)
---
diff --git a/7.3.857 b/7.3.857
new file mode 100644
index 0000000..1c3ca8c
--- /dev/null
+++ b/7.3.857
@@ -0,0 +1,91 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.857
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.857
+Problem:    The QuitPre autocommand event does not trigger for :qa and :wq.
+Solution:   Trigger the event. (Tatsuro Fujii)
+Files:	    src/ex_docmd.c
+
+
+*** ../vim-7.3.856/src/ex_docmd.c	2013-02-26 17:21:15.000000000 +0100
+--- src/ex_docmd.c	2013-03-13 18:14:56.000000000 +0100
+***************
+*** 6526,6532 ****
+      }
+  #ifdef FEAT_AUTOCMD
+      apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
+!     /* Refuse to quick when locked or when the buffer in the last window is
+       * being closed (can only happen in autocommands). */
+      if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
+  	return;
+--- 6526,6532 ----
+      }
+  #ifdef FEAT_AUTOCMD
+      apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
+!     /* Refuse to quit when locked or when the buffer in the last window is
+       * being closed (can only happen in autocommands). */
+      if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
+  	return;
+***************
+*** 6600,6606 ****
+  	return;
+      }
+  #ifdef FEAT_AUTOCMD
+!     if (curbuf_locked())
+  	return;
+  #endif
+  
+--- 6600,6609 ----
+  	return;
+      }
+  #ifdef FEAT_AUTOCMD
+!     apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
+!     /* Refuse to quit when locked or when the buffer in the last window is
+!      * being closed (can only happen in autocommands). */
+!     if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
+  	return;
+  #endif
+  
+***************
+*** 6936,6942 ****
+  	return;
+      }
+  #ifdef FEAT_AUTOCMD
+!     if (curbuf_locked())
+  	return;
+  #endif
+  
+--- 6939,6948 ----
+  	return;
+      }
+  #ifdef FEAT_AUTOCMD
+!     apply_autocmds(EVENT_QUITPRE, NULL, NULL, FALSE, curbuf);
+!     /* Refuse to quit when locked or when the buffer in the last window is
+!      * being closed (can only happen in autocommands). */
+!     if (curbuf_locked() || (curbuf->b_nwindows == 1 && curbuf->b_closing))
+  	return;
+  #endif
+  
+*** ../vim-7.3.856/src/version.c	2013-03-13 17:50:20.000000000 +0100
+--- src/version.c	2013-03-13 18:26:13.000000000 +0100
+***************
+*** 730,731 ****
+--- 730,733 ----
+  {   /* Add new patch number below this line */
++ /**/
++     857,
+  /**/
+
+-- 
+The future isn't what it used to be.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///


More information about the scm-commits mailing list