diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2008-10-24 00:46:27 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2008-10-24 00:46:27 (GMT) |
commit | 5c2b16b9e79d4ef4fa8875a6b3cbb3ec75eee04a (patch) | |
tree | 601f719e6a216f34b0bcddae42e43291de884830 /tools | |
parent | 8def31ff208a95aca8062c71d4dd6a020b417dbe (diff) | |
download | tcl-5c2b16b9e79d4ef4fa8875a6b3cbb3ec75eee04a.zip tcl-5c2b16b9e79d4ef4fa8875a6b3cbb3ec75eee04a.tar.gz tcl-5c2b16b9e79d4ef4fa8875a6b3cbb3ec75eee04a.tar.bz2 |
Removed a rogue ^M from the end of a line
Diffstat (limited to 'tools')
-rw-r--r-- | tools/man2tcl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/man2tcl.c b/tools/man2tcl.c index 64ec466..29946ec 100644 --- a/tools/man2tcl.c +++ b/tools/man2tcl.c @@ -15,7 +15,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: man2tcl.c,v 1.13.2.2 2008/10/06 18:42:11 mistachkin Exp $ + * RCS: @(#) $Id: man2tcl.c,v 1.13.2.3 2008/10/24 00:46:27 patthoyts Exp $ */ static char sccsid[] = "@(#) man2tcl.c 1.3 95/08/12 17:34:08"; @@ -352,7 +352,7 @@ DoText( sscanf(p,"%d",&ch); PRINT(("text \\u%04x\n", ch)); while(*p&&*p!='\'') p++; - p++;
+ p++; } else if (*p != 0) { PRINT(("char {\\%c}\n", *p)); p++; |