[geany/geany-plugins] 8c7596: git-changebar: Remove obsolete compatibility code

Colomban Wendling git-noreply at xxxxx
Tue May 26 19:48:02 UTC 2015


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Tue, 26 May 2015 19:48:02 UTC
Commit:      8c7596b5f030c252300a5940c2e8c71bc99dc96a
             https://github.com/geany/geany-plugins/commit/8c7596b5f030c252300a5940c2e8c71bc99dc96a

Log Message:
-----------
git-changebar: Remove obsolete compatibility code

Drop all compatibility code for pre-0.21 libgit2 as 0.21 is a hard
dependency now.


Modified Paths:
--------------
    git-changebar/src/gcb-plugin.c

Modified: git-changebar/src/gcb-plugin.c
39 lines changed, 0 insertions(+), 39 deletions(-)
===================================================================
@@ -36,9 +36,6 @@
 # define git_libgit2_init     git_threads_init
 # define git_libgit2_shutdown git_threads_shutdown
 #endif
-#if LIBGIT2_VER_MAJOR == 0 && LIBGIT2_VER_MINOR < 20
-# define git_diff_hunk git_diff_range
-#endif
 
 
 GeanyPlugin      *geany_plugin;
@@ -665,18 +662,6 @@ diff_hunk_cb (const git_diff_delta *delta,
   
   return 0;
 }
-#if LIBGIT2_VER_MAJOR == 0 && LIBGIT2_VER_MINOR < 20
-static int
-diff_hunk_cb_wrapper (const git_diff_delta *delta,
-                      const git_diff_hunk  *hunk,
-                      const char           *header,
-                      size_t                header_len,
-                      void                 *data)
-{
-  return diff_hunk_cb (delta, hunk, data);
-}
-# define diff_hunk_cb diff_hunk_cb_wrapper
-#endif
 
 static GtkWidget *
 get_widget_for_buf_range (GeanyDocument *doc,
@@ -775,18 +760,6 @@ tooltip_diff_hunk_cb (const git_diff_delta *delta,
   
   return thd->found;
 }
-#if LIBGIT2_VER_MAJOR == 0 && LIBGIT2_VER_MINOR < 20
-static int
-tooltip_diff_hunk_cb_wrapper (const git_diff_delta *delta,
-                              const git_diff_hunk  *hunk,
-                              const char           *header,
-                              size_t                header_len,
-                              void                 *data)
-{
-  return tooltip_diff_hunk_cb (delta, hunk, data);
-}
-# define tooltip_diff_hunk_cb tooltip_diff_hunk_cb_wrapper
-#endif
 
 static gboolean
 on_sci_query_tooltip (GtkWidget  *widget,
@@ -987,18 +960,6 @@ goto_next_hunk_diff_hunk_cb (const git_diff_delta *delta,
   
   return 0;
 }
-#if LIBGIT2_VER_MAJOR == 0 && LIBGIT2_VER_MINOR < 20
-static int
-goto_next_hunk_diff_hunk_cb_wrapper (const git_diff_delta *delta,
-                                     const git_diff_hunk  *hunk,
-                                     const char           *header,
-                                     size_t                header_len,
-                                     void                 *data)
-{
-  return goto_next_hunk_diff_hunk_cb (delta, hunk, data);
-}
-# define goto_next_hunk_diff_hunk_cb goto_next_hunk_diff_hunk_cb_wrapper
-#endif
 
 static void
 goto_next_hunk_cb (const gchar *path,



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Plugins-Commits mailing list