Skip to content
This repository has been archived by the owner on Mar 6, 2023. It is now read-only.

Commit

Permalink
sync with experimental
Browse files Browse the repository at this point in the history
git-svn-id: https://serveur-svn.lri.fr/svn/modhel/luatex/trunk@7289 0b2b3880-5936-4365-a048-eb17d2e5a6bf
  • Loading branch information
luigiScarso committed Feb 15, 2020
1 parent 467112d commit a9714f4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ static int lua_geti (lua_State *L, int index, lua_Integer i) {
}
#endif

int shape_full (lua_State *L) {
static int shape_full (lua_State *L) {
Font *font = (Font *)luaL_checkudata(L, 1, "harfbuzz.Font");
Buffer *buf = (Buffer *)luaL_checkudata(L, 2, "harfbuzz.Buffer");
unsigned int i;
Expand Down Expand Up @@ -50,12 +50,12 @@ int shape_full (lua_State *L) {
return 1;
}

int version (lua_State *L) {
static int version (lua_State *L) {
lua_pushstring(L, hb_version_string());
return 1;
}

int list_shapers (lua_State *L) {
static int list_shapers (lua_State *L) {
const char **shaper_list = hb_shape_list_shapers ();
int i = 0;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ int register_direction(lua_State *L);
int register_language(lua_State *L);
int register_ot(lua_State *L);
int register_unicode(lua_State *L);

// Missed declaration
int luaopen_luaharfbuzz (lua_State *L);
2 changes: 1 addition & 1 deletion source/texk/web2c/luatexdir/luatex_svnversion.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define luatex_svn_revision 7286
#define luatex_svn_revision 7287

0 comments on commit a9714f4

Please sign in to comment.