home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 7.3 / 7.3.542 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  2.2 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.542
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.542 (after 7.3.506)
  11. Problem:    Function is sometimes unused.
  12. Solution:   Add #ifdef.
  13. Files:        src/gui_gtk.c
  14.  
  15.  
  16. *** ../vim-7.3.541/src/gui_gtk.c    2012-04-25 17:10:12.000000000 +0200
  17. --- src/gui_gtk.c    2012-06-06 15:25:12.000000000 +0200
  18. ***************
  19. *** 90,100 ****
  20. --- 90,102 ----
  21.   static void entry_activate_cb(GtkWidget *widget, gpointer data);
  22.   static void entry_changed_cb(GtkWidget *entry, GtkWidget *dialog);
  23.   static void find_replace_cb(GtkWidget *widget, gpointer data);
  24. + #if defined(FEAT_BROWSE) || defined(PROTO)
  25.   static void recent_func_log_func(
  26.       const gchar *log_domain,
  27.       GLogLevelFlags log_level,
  28.       const gchar *message,
  29.       gpointer user_data);
  30. + #endif
  31.   
  32.   #if defined(FEAT_TOOLBAR)
  33.   /*
  34. ***************
  35. *** 1896,1901 ****
  36. --- 1898,1904 ----
  37.       do_cmdline_cmd((char_u *)"emenu ToolBar.FindHelp");
  38.   }
  39.   
  40. + #if defined(FEAT_BROWSE) || defined(PROTO)
  41.       static void
  42.   recent_func_log_func(const gchar *log_domain UNUSED,
  43.                GLogLevelFlags log_level UNUSED,
  44. ***************
  45. *** 1905,1908 ****
  46.       /* We just want to suppress the warnings. */
  47.       /* http://bugzilla.gnome.org/show_bug.cgi?id=664587 */
  48.   }
  49. --- 1908,1911 ----
  50.       /* We just want to suppress the warnings. */
  51.       /* http://bugzilla.gnome.org/show_bug.cgi?id=664587 */
  52.   }
  53. ! #endif
  54. *** ../vim-7.3.541/src/version.c    2012-06-06 16:12:54.000000000 +0200
  55. --- src/version.c    2012-06-06 16:14:17.000000000 +0200
  56. ***************
  57. *** 716,717 ****
  58. --- 716,719 ----
  59.   {   /* Add new patch number below this line */
  60. + /**/
  61. +     542,
  62.   /**/
  63.  
  64. -- 
  65. How To Keep A Healthy Level Of Insanity:
  66. 1. At lunch time, sit in your parked car with sunglasses on and point
  67.    a hair dryer at passing cars. See if they slow down.
  68.  
  69.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  70. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  71. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  72.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  73.