Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
luatex
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeXLive
luatex
Commits
f8aa8dee
Commit
f8aa8dee
authored
6 years ago
by
Luigi Scarso
Browse files
Options
Downloads
Patches
Plain Diff
som experiment with text
parent
a3ce7779
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
source/texk/web2c/luatexdir/NEWS
+35
-0
35 additions, 0 deletions
source/texk/web2c/luatexdir/NEWS
source/texk/web2c/luatexdir/luatex_svnversion.h
+1
-1
1 addition, 1 deletion
source/texk/web2c/luatexdir/luatex_svnversion.h
source/texk/web2c/mplibdir/mp.w
+3
-2
3 additions, 2 deletions
source/texk/web2c/mplibdir/mp.w
with
39 additions
and
3 deletions
source/texk/web2c/luatexdir/NEWS
+
35
−
0
View file @
f8aa8dee
==============================================================
LuaTeX 1.08 2018-08-28
==============================================================
(1) This release is a prelude to 1.10, the next stable iteration of LuaTeX
after version 1.00.
(2) Lua 5.3 is now considered to be default and we might use 5.4 in version
1.10. There are no real functional changed expected. You still need to rename
the binary for 5.3!
(3) Binary mode is no longer available in MPlib but it is still available in
stand alone MetaPost. This simplifies compilation and reduces dependencies.
(4) The dependency on Poppler for pdf image inclusion has been removed. We
now use a small dedicated library written by Pawel Jakowski. We no longer
need c++ compilers. We're in the process of making it behave well on all
platforms. It has been tested on intel platforms.
(5) We know that there can be some (alignment) issues with the arm platform
but these are looked into. Therefore, later this year we will release 1.09.
Version 1.10 is planned for TeXlive. We hope that ffi works ok on intel and
arm platforms at that point.
(6) There have been some extensions to the Lua libraries and some callbacks
have been added. Also, a few new primitives have been introduced. The
documentation mentions the stable extensions.
(7) There are the usual bug fixes and cleanups but there have been no real
fundamental changes in the API.
==============================================================
LuaTeX 1.07 2018-01-17
==============================================================
...
...
This diff is collapsed.
Click to expand it.
source/texk/web2c/luatexdir/luatex_svnversion.h
+
1
−
1
View file @
f8aa8dee
#define luatex_svn_revision 690
8
#define luatex_svn_revision 690
9
This diff is collapsed.
Click to expand it.
source/texk/web2c/mplibdir/mp.w
+
3
−
2
View file @
f8aa8dee
...
...
@@ -210,7 +210,7 @@ extern const char *COMPILED_MPFR_VERSION_STRING;
extern const char* mpfr_get_version (void);
extern void * mp_initialize_binary_math (MP mp) ;
extern int COMPILED__GNU_MP_VERSION;
extern int COMPILED__GNU_MP_VERSION_MINOR;
extern int COMPILED__GNU_MP_VERSION_MINOR;
extern int COMPILED__GNU_MP_VERSION_PATCHLEVEL;
extern const char * const COMPILED_gmp_version;
extern const char *COMPILED_PIXMAN_VERSION_STRING;
...
...
@@ -20048,7 +20048,8 @@ line and preceded by a space or at the beginning of a line.
ptr = txt;
} else {
/* strip trailing whitespace, we have a \0 so we're one off */
while ((size > 1) && (mp->char_class[(ASCII_code) txt[size-2]] == space_class || txt[size-2] == '\n')) {
/* while ((size > 1) && (mp->char_class[(ASCII_code) txt[size-2]] == space_class || txt[size-2] == '\n')) { */
while ((size > 1) && (mp->char_class[(ASCII_code) txt[size-1]] == space_class || txt[size-1] == '\n')) {
decr(size);
}
/* prune the string */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment