diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-03-22 15:42:34 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2010-03-22 15:42:34 +0000 |
commit | cbc1cd0c0fa2ce847278e354fb17358519ad42d6 (patch) | |
tree | 0f6a717aa9cf05f65ad84e90bfc0ddfa467cea7d /Build/source/texk/bibtex8/bibtex-4.c | |
parent | ce80ff89bd98a40a048c0420d6eb2886eed84e0e (diff) |
bibtex/bibtex8/bibtexu: bug fix and more updates
git-svn-id: svn://tug.org/texlive/trunk@17528 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtex8/bibtex-4.c')
-rw-r--r-- | Build/source/texk/bibtex8/bibtex-4.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Build/source/texk/bibtex8/bibtex-4.c b/Build/source/texk/bibtex8/bibtex-4.c index 1627614cb59..07cf8d0f0e7 100644 --- a/Build/source/texk/bibtex8/bibtex-4.c +++ b/Build/source/texk/bibtex8/bibtex-4.c @@ -1316,7 +1316,7 @@ BEGIN sp_xptr1 = str_start[pop_lit2 + 1]; if ((sp_xptr1 - sp_ptr) > ENT_STR_SIZE) BEGIN - BST_STRING_SIZE_EXCEEDED (ENT_STR_SIZE, "%ld, the entry"); + BST_STRING_SIZE_EXCEEDED (ENT_STR_SIZE, ", the entry"); sp_xptr1 = sp_ptr + ENT_STR_SIZE; END while (sp_ptr < sp_xptr1) @@ -1378,7 +1378,7 @@ BEGIN sp_end = str_start[pop_lit2 + 1]; if ((sp_end - sp_ptr) > GLOB_STR_SIZE) BEGIN - BST_STRING_SIZE_EXCEEDED (GLOB_STR_SIZE, "%ld, the global"); + BST_STRING_SIZE_EXCEEDED (GLOB_STR_SIZE, ", the global"); sp_end = sp_ptr + GLOB_STR_SIZE; END while (sp_ptr < sp_end) @@ -2251,6 +2251,7 @@ BEGIN END /*^^^^^^^^^^^^^^^^^^^^^^^^^^ END OF SECTION 445 ^^^^^^^^^^^^^^^^^^^^^^^^^^^*/ + STR_ROOM (sp_brace_level + sp_end - sp_ptr); if (pop_lit2 >= cmd_str_ptr) BEGIN pool_ptr = sp_end; |