+2005-01-06 Bruno Haible <bruno@clisp.org>
+
+ * x-tcl.c (read_word): Ignore non-space whitespace at the beginning.
+ Reported by William J Poser <wjposer@ldc.upenn.edu>.
+
2005-01-06 Bruno Haible <bruno@clisp.org>
* write-csharp.c (msgdomain_write_csharp): Don't call fclose after
/* xgettext Tcl backend.
- Copyright (C) 2002-2003 Free Software Foundation, Inc.
+ Copyright (C) 2002-2003, 2005 Free Software Foundation, Inc.
This file was written by Bruno Haible <haible@clisp.cons.org>, 2002.
do
c = phase2_getc ();
- while (c == ' ' || c == BS_NL);
+ while (c == ' ' || c == BS_NL
+ || c == '\t' || c == '\v' || c == '\f' || c == '\r');
if (c == EOF)
{