Rename get_table to reference_table in all API
diff --git a/src/hb-ft.cc b/src/hb-ft.cc
index 7e0c19b..e757524 100644
--- a/src/hb-ft.cc
+++ b/src/hb-ft.cc
@@ -243,7 +243,7 @@
 
 
 static hb_blob_t *
-get_table  (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
+reference_table  (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
 {
   FT_Face ft_face = (FT_Face) user_data;
   FT_Byte *buffer;
@@ -291,7 +291,7 @@
     face = hb_face_create (blob, ft_face->face_index);
     hb_blob_destroy (blob);
   } else {
-    face = hb_face_create_for_tables (get_table, ft_face, destroy);
+    face = hb_face_create_for_tables (reference_table, ft_face, destroy);
   }
 
   return face;