[API] Rename hb_buffer_add_glyph() to hb_buffer_add()
diff --git a/src/hb-buffer.cc b/src/hb-buffer.cc
index 68ef594..2f7a173 100644
--- a/src/hb-buffer.cc
+++ b/src/hb-buffer.cc
@@ -267,10 +267,10 @@
}
void
-hb_buffer_add_glyph (hb_buffer_t *buffer,
- hb_codepoint_t codepoint,
- hb_mask_t mask,
- unsigned int cluster)
+hb_buffer_add (hb_buffer_t *buffer,
+ hb_codepoint_t codepoint,
+ hb_mask_t mask,
+ unsigned int cluster)
{
hb_glyph_info_t *glyph;
@@ -572,7 +572,7 @@
hb_codepoint_t u; \
const T *old_next = next; \
next = UTF_NEXT (next, end, u); \
- hb_buffer_add_glyph (buffer, u, 1, old_next - (const T *) text); \
+ hb_buffer_add (buffer, u, 1, old_next - (const T *) text); \
} \
} HB_STMT_END