[latex3-commits] [l3svn] branch master updated: Stray parenthesis removed

noreply at latex-project.org noreply at latex-project.org
Fri Jan 1 11:09:10 CET 2016


This is an automated email from the git hooks/post-receive script.

joseph pushed a commit to branch master
in repository l3svn.

The following commit(s) were added to refs/heads/master by this push:
       new  135cfb8   Stray parenthesis removed
135cfb8 is described below

commit 135cfb8cc45ac333cb0a1c9b34455e307204e232
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Fri Jan 1 10:08:55 2016 +0000

    Stray parenthesis removed
---
 l3build/l3build.lua |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index ce7f87a..3411e33 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -1,6 +1,6 @@
 --[[
 
-  File l3build.lua (C) Copyright 2014-2015 The LaTeX3 Project
+  File l3build.lua (C) Copyright 2014-2016 The LaTeX3 Project
 
  It may be distributed and/or modified under the conditions of the
  LaTeX Project Public License (LPPL), either version 1.3c of this
@@ -986,9 +986,9 @@ function formatlualog(logfile, newfile)
     local kpse = require("kpse")
     kpse.set_program_name("luatex")
     local maxprintline = tonumber(kpse.expand_var("$max_print_line"))
-    if (string.len(line) == maxprintline) then
+    if string.len(line) == maxprintline then
       return "", line
-    elseif (string.len(lastline) == maxprintline) then
+    elseif string.len(lastline) == maxprintline then
       if string.match(line, "\\ETC%.%}$") then
         -- If the line wrapped at \ETC we might have lost a space
         return lastline

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the latex3-commits mailing list