summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index cf9159c..f9fde4c 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -9825,6 +9825,16 @@ static void escapeAliases()
}
newValue+=value.mid(p,value.length()-p);
*s=newValue;
+ p = 0;
+ newValue = "";
+ while ((in=value.find("^^",p))!=-1)
+ {
+ newValue+=value.mid(p,in-p);
+ newValue+="\n";
+ p=in+2;
+ }
+ newValue+=value.mid(p,value.length()-p);
+ *s=newValue;
//printf("Alias %s has value %s\n",adi.currentKey().data(),s->data());
}
}