summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorwtschueller <wtschueller@users.noreply.github.com>2015-04-07 19:45:31 (GMT)
committerwtschueller <wtschueller@users.noreply.github.com>2015-04-07 19:45:31 (GMT)
commit3cc116ba2250e6946773ec22c6c7c6557773d28e (patch)
treeeaed32441ca4cc687a232b277ff267576130f921 /src
parent298ab30b2a2aa0936f4683c9366afd44c00adc60 (diff)
downloadDoxygen-3cc116ba2250e6946773ec22c6c7c6557773d28e.zip
Doxygen-3cc116ba2250e6946773ec22c6c7c6557773d28e.tar.gz
Doxygen-3cc116ba2250e6946773ec22c6c7c6557773d28e.tar.bz2
Tcl: fix for extra line breaks in source browser introduced by commit 312bef5
Diffstat (limited to 'src')
-rw-r--r--src/tclscanner.l10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/tclscanner.l b/src/tclscanner.l
index 6ad2e26..7befd40 100644
--- a/src/tclscanner.l
+++ b/src/tclscanner.l
@@ -666,7 +666,9 @@ static void tcl_codify(const char *s,const char *str)
tcl.code->startFontClass(s);
tcl.code_font=s;
}
- const char *p=str,*sp=p;
+ char *tmp = (char *) malloc(strlen(str)+1);
+ strcpy(tmp, str);
+ char *p=tmp,*sp=p;
char c;
bool done=FALSE;
while (!done)
@@ -676,7 +678,10 @@ static void tcl_codify(const char *s,const char *str)
if (c=='\n')
{
tcl.code_line++;
- // *(p-1)='\0'; // Dimitri: is this really needed?
+ *(p-1)='\0'; // Dimitri: is this really needed?
+ // wtschueller: As far as I can see: yes.
+ // Deletes that \n that would produce ugly source listings otherwise.
+ // However, there may exist more sophisticated solutions.
tcl.code->codify(sp);
if (tcl.code_font)
{
@@ -699,6 +704,7 @@ static void tcl_codify(const char *s,const char *str)
done=TRUE;
}
}
+ free(tmp);
tcl_font_end();
}