• R/O
  • SSH

vim: コミット

Mirror of the Vim source from https://github.com/vim/vim


コミットメタ情報

リビジョンe1d77e652cb7f9e84072f16b3ac6dcbb73a1fd81 (tree)
日時2008-07-08 19:46:08
作者vimboss
コミッターvimboss

ログメッセージ

updated for version 7.2a-018

変更サマリ

差分

diff -r 5c3844ad7d56 -r e1d77e652cb7 src/gui_gtk_x11.c
--- a/src/gui_gtk_x11.c Tue Jul 08 09:36:58 2008 +0000
+++ b/src/gui_gtk_x11.c Tue Jul 08 10:46:08 2008 +0000
@@ -22,6 +22,7 @@
2222 */
2323
2424 #include "vim.h"
25+
2526 #ifdef FEAT_GUI_GNOME
2627 /* Gnome redefines _() and N_(). Grrr... */
2728 # ifdef _
@@ -1592,7 +1593,7 @@
15921593 if (!gtk_init_check(&gui_argc, &gui_argv))
15931594 {
15941595 gui.dying = TRUE;
1595- EMSG(_(e_opendisp));
1596+ EMSG(_((char *)e_opendisp));
15961597 return FAIL;
15971598 }
15981599
@@ -2345,9 +2346,9 @@
23452346 /* Don't write messages to the GUI anymore */
23462347 full_screen = FALSE;
23472348
2348- vim_strncpy(IObuff,
2349+ vim_strncpy(IObuff, (char_u *)
23492350 _("Vim: Received \"die\" request from session manager\n"),
2350- IOSIZE - 1);
2351+ IOSIZE - 1);
23512352 preserve_exit();
23522353 }
23532354
@@ -5244,7 +5245,7 @@
52445245 if (font == NULL)
52455246 {
52465247 if (report_error)
5247- EMSG2(_(e_font), name);
5248+ EMSG2(_((char *)e_font), name);
52485249 return NULL;
52495250 }
52505251
diff -r 5c3844ad7d56 -r e1d77e652cb7 src/version.c
--- a/src/version.c Tue Jul 08 09:36:58 2008 +0000
+++ b/src/version.c Tue Jul 08 10:46:08 2008 +0000
@@ -677,6 +677,8 @@
677677 static int included_patches[] =
678678 { /* Add new patch number below this line */
679679 /**/
680+ 18,
681+/**/
680682 17,
681683 /**/
682684 16,
旧リポジトリブラウザで表示