[vim] - patchlevel 686

Karsten Hopp karsten at fedoraproject.org
Mon Oct 15 10:18:19 UTC 2012


commit 1efe4be0e9093209d21a226c71d3dd100dd1e94c
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Oct 15 12:17:39 2012 +0200

    - patchlevel 686

 7.3.686 |   63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 63 insertions(+), 0 deletions(-)
---
diff --git a/7.3.686 b/7.3.686
new file mode 100644
index 0000000..81d2369
--- /dev/null
+++ b/7.3.686
@@ -0,0 +1,63 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.686
+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.686
+Problem:    Using CTRL-\ e mappings is useful also when entering an
+            expression, but it doesn't work. (Marcin Szamotulski)
+Solution:   Allow using CTRL-\ e when entering an expression if it was not
+            typed.
+Files:      src/ex_getln.c
+
+
+*** ../vim-7.3.685/src/ex_getln.c	2012-08-15 14:04:50.000000000 +0200
+--- src/ex_getln.c	2012-10-11 03:54:04.000000000 +0200
+***************
+*** 667,675 ****
+  	    c = plain_vgetc();
+  	    --no_mapping;
+  	    --allow_keys;
+! 	    /* CTRL-\ e doesn't work when obtaining an expression. */
+! 	    if (c != Ctrl_N && c != Ctrl_G
+! 				     && (c != 'e' || ccline.cmdfirstc == '='))
+  	    {
+  		vungetc(c);
+  		c = Ctrl_BSL;
+--- 667,676 ----
+  	    c = plain_vgetc();
+  	    --no_mapping;
+  	    --allow_keys;
+! 	    /* CTRL-\ e doesn't work when obtaining an expression, unless it
+! 	     * is in a mapping. */
+! 	    if (c != Ctrl_N && c != Ctrl_G && (c != 'e'
+! 				    || (ccline.cmdfirstc == '=' && KeyTyped)))
+  	    {
+  		vungetc(c);
+  		c = Ctrl_BSL;
+*** ../vim-7.3.685/src/version.c	2012-10-11 03:35:38.000000000 +0200
+--- src/version.c	2012-10-11 04:03:19.000000000 +0200
+***************
+*** 721,722 ****
+--- 721,724 ----
+  {   /* Add new patch number below this line */
++ /**/
++     686,
+  /**/
+
+-- 
+(letter from Mark to Mike, about the film's probable certificate)
+      I would like to get back to the Censor and agree to lose the shits, take
+      the odd Jesus Christ out and lose Oh fuck off, but to retain 'fart in
+      your general direction', 'castanets of your testicles' and 'oral sex'
+      and ask him for an 'A' rating on that basis.
+                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
+
+ /// 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