diff options
author | Jeffrey H. Kingston <jeff@it.usyd.edu.au> | 2010-09-14 20:38:23 +0000 |
---|---|---|
committer | Jeffrey H. Kingston <jeff@it.usyd.edu.au> | 2010-09-14 20:38:23 +0000 |
commit | 78c2bcf9e96ab00615ee6f96905bca78fcd52a00 (patch) | |
tree | 9c7e31f2a59e174433e55b589771005b48a34158 /z43.c | |
parent | 9daa98ce90ceeeaba9e942d28575d8fcfe36db4b (diff) | |
download | lout-78c2bcf9e96ab00615ee6f96905bca78fcd52a00.tar.gz |
Lout 3.27.
git-svn-id: http://svn.savannah.nongnu.org/svn/lout/trunk@23 9365b830-b601-4143-9ba8-b4a8e2c3339c
Diffstat (limited to 'z43.c')
-rw-r--r-- | z43.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,9 +1,9 @@ /*@z43.c:Language Service:LanguageChange, LanguageString@*********************/ /* */ -/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.26) */ +/* THE LOUT DOCUMENT FORMATTING SYSTEM (VERSION 3.27) */ /* COPYRIGHT (C) 1991, 2002 Jeffrey H. Kingston */ /* */ -/* Jeffrey H. Kingston (jeff@cs.usyd.edu.au) */ +/* Jeffrey H. Kingston (jeff@it.usyd.edu.au) */ /* Basser Department of Computer Science */ /* The University of Sydney 2006 */ /* AUSTRALIA */ @@ -122,8 +122,8 @@ static OBJECT ltab_retrieve(FULL_CHAR *str, LANGUAGE_TABLE S) #if DEBUG_ON static void ltab_debug(LANGUAGE_TABLE S, FILE *fp) { int i; OBJECT x, link, y; - fprintf(fp, " table size: %d; current number of keys: %d\n", - ltab_size(S), ltab_count(S)); + fprintf(fp, " table size: %d; current number of keys: %d%s", + ltab_size(S), ltab_count(S), STR_NEWLINE); for( i = 0; i < ltab_size(S); i++ ) { x = ltab_item(S, i); fprintf(fp, "ltab_item(S, %d) =", i); @@ -136,7 +136,7 @@ static void ltab_debug(LANGUAGE_TABLE S, FILE *fp) fprintf(fp, " %s", is_word(type(y)) ? string(y) : AsciiToFull("not-WORD!")); } - fprintf(fp, "\n"); + fprintf(fp, "%s", STR_NEWLINE); } } /* end ltab_debug */ #endif |