diff options
author | patthoyts <patthoyts@noemail.net> | 2008-10-24 00:40:08 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@noemail.net> | 2008-10-24 00:40:08 (GMT) |
commit | 1f85fbbbb2b5364a249077b1b96b720d5ccfb28e (patch) | |
tree | ab2b3342b432bcd58fb4051cbd23d2ef0d93c909 /tools | |
parent | ef3d83addbfa27dc2e21a93b42d8cc368998d26a (diff) | |
download | tcl-1f85fbbbb2b5364a249077b1b96b720d5ccfb28e.zip tcl-1f85fbbbb2b5364a249077b1b96b720d5ccfb28e.tar.gz tcl-1f85fbbbb2b5364a249077b1b96b720d5ccfb28e.tar.bz2 |
Removed a rogue ^M from the end of a line
FossilOrigin-Name: 67dbd05fb43ddaf67122db1b75d115ba2036e98a
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 a840f57..3169177 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.16 2008/10/06 18:38:39 mistachkin Exp $ + * RCS: @(#) $Id: man2tcl.c,v 1.17 2008/10/24 00:40:08 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++; |