summaryrefslogtreecommitdiffstats
path: root/patches/source/vim/patches/7.4.270
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2018-05-25 23:29:36 +0000
committer Eric Hameleers <alien@slackware.com>2018-05-31 15:18:32 -0700
commit8ff4f2f51a6cf07fc33742ce3bee81328896e49b (patch)
tree4a166b8389404be98a6c098babaa444e2dec8f48 /patches/source/vim/patches/7.4.270
parent76fc4757ac91ac7947a01fb7b53dddf9a78a01d1 (diff)
downloadcurrent-14.1.tar.gz
current-14.1.tar.xz
Fri May 25 23:29:36 UTC 201814.1
patches/packages/glibc-zoneinfo-2018e-noarch-2_slack14.1.txz: Rebuilt. Handle removal of US/Pacific-New timezone. If we see that the machine is using this, it will be automatically switched to US/Pacific.
Diffstat (limited to 'patches/source/vim/patches/7.4.270')
-rw-r--r--patches/source/vim/patches/7.4.27062
1 files changed, 62 insertions, 0 deletions
diff --git a/patches/source/vim/patches/7.4.270 b/patches/source/vim/patches/7.4.270
new file mode 100644
index 000000000..ce9fb70dd
--- /dev/null
+++ b/patches/source/vim/patches/7.4.270
@@ -0,0 +1,62 @@
+To: vim_dev@googlegroups.com
+Subject: Patch 7.4.270
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.4.270
+Problem: Comparing pointers instead of the string they point to.
+Solution: Use strcmp(). (Ken Takata)
+Files: src/gui_gtk_x11.c
+
+
+*** ../vim-7.4.269/src/gui_gtk_x11.c 2014-04-06 21:08:41.311360470 +0200
+--- src/gui_gtk_x11.c 2014-04-29 15:02:35.931856814 +0200
+***************
+*** 3142,3151 ****
+ gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
+ LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
+ # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
+! /* Make sure strtod() uses a decimal point, not a comma. Gnome init
+! * may change it. */
+! if (setlocale(LC_NUMERIC, NULL) != (char *) "C")
+! setlocale(LC_NUMERIC, "C");
+ # endif
+ }
+ #endif
+--- 3142,3155 ----
+ gnome_program_init(VIMPACKAGE, VIM_VERSION_SHORT,
+ LIBGNOMEUI_MODULE, gui_argc, gui_argv, NULL);
+ # if defined(FEAT_FLOAT) && defined(LC_NUMERIC)
+! {
+! char *p = setlocale(LC_NUMERIC, NULL);
+!
+! /* Make sure strtod() uses a decimal point, not a comma. Gnome
+! * init may change it. */
+! if (p == NULL || strcmp(p, "C") != 0)
+! setlocale(LC_NUMERIC, "C");
+! }
+ # endif
+ }
+ #endif
+*** ../vim-7.4.269/src/version.c 2014-04-29 14:44:31.519875819 +0200
+--- src/version.c 2014-04-29 14:59:21.799860216 +0200
+***************
+*** 736,737 ****
+--- 736,739 ----
+ { /* Add new patch number below this line */
++ /**/
++ 270,
+ /**/
+
+--
+From "know your smileys":
+ :-| :-| Deja' vu!
+
+ /// Bram Moolenaar -- Bram@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 ///