Skip to content

Commit

Permalink
Merge pull request #1448 from rpspringuel/lua53
Browse files Browse the repository at this point in the history
Update for Lua 5.3
  • Loading branch information
rpspringuel authored Apr 6, 2019
2 parents a52cf9c + cee6569 commit af87e1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ All notable changes to this project will be documented in this file.
As of v3.0.0 this project adheres to [Semantic Versioning](http://semver.org/). It follows [some conventions](http://keepachangelog.com/).

## [Unreleased][CTAN]

### Fixed
- Eliminated implicit casting from float to integer in string formatting (something no longer allowed in Lua 5.3)

## [5.2.0] - 2019-03-10
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion tex/gregoriotex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ local function post_linebreak(h, groupcode, glyphes)
h, line = remove(h, line)
else
linenum = linenum + 1
debugmessage('linesglues', 'line %d: %s factor %d%%', linenum, glue_sign_name[line.glue_sign], line.glue_set*100)
debugmessage('linesglues', 'line %d: %s factor %.0f%%', linenum, glue_sign_name[line.glue_sign], line.glue_set*100)
centerstartnode = nil
line_id = nil
line_top = nil
Expand Down

0 comments on commit af87e1a

Please sign in to comment.