mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-23 11:13:44 +02:00
sch2fig/lib.c (lib_parse): replace all ~ in unquoted strings with spaces
This commit is contained in:
parent
252e92fe64
commit
0ddd4dbbb3
@ -4,7 +4,6 @@
|
|||||||
- unify alignment, direction
|
- unify alignment, direction
|
||||||
- support fonts attributes ?
|
- support fonts attributes ?
|
||||||
- support line thickness ?
|
- support line thickness ?
|
||||||
- ~ as space (grep for ~ in out.fig)
|
|
||||||
- ~ as overline (grep for ~ in out.fig)
|
- ~ as overline (grep for ~ in out.fig)
|
||||||
- glabel: build for "right" style, then rotate poly
|
- glabel: build for "right" style, then rotate poly
|
||||||
- break into file reading, internal storage, rendering
|
- break into file reading, internal storage, rendering
|
||||||
|
@ -603,13 +603,22 @@ bool lib_parse(struct lib_ctx *ctx, const char *line)
|
|||||||
&obj->u.text.dim, &zero1, &obj->unit, &obj->convert,
|
&obj->u.text.dim, &zero1, &obj->unit, &obj->convert,
|
||||||
&obj->u.text.s, &style, &zero2,
|
&obj->u.text.s, &style, &zero2,
|
||||||
&obj->u.text.hor_align, &obj->u.text.vert_align);
|
&obj->u.text.hor_align, &obj->u.text.vert_align);
|
||||||
if (n != 12)
|
if (n != 12) {
|
||||||
n = sscanf(line,
|
n = sscanf(line,
|
||||||
"T %d %d %d %d %u %u %u %ms %ms %u %c %c",
|
"T %d %d %d %d %u %u %u %ms %ms %u %c %c",
|
||||||
&obj->u.text.orient, &obj->u.text.x, &obj->u.text.y,
|
&obj->u.text.orient, &obj->u.text.x, &obj->u.text.y,
|
||||||
&obj->u.text.dim, &zero1, &obj->unit, &obj->convert,
|
&obj->u.text.dim, &zero1, &obj->unit, &obj->convert,
|
||||||
&obj->u.text.s, &style, &zero2,
|
&obj->u.text.s, &style, &zero2,
|
||||||
&obj->u.text.hor_align, &obj->u.text.vert_align);
|
&obj->u.text.hor_align, &obj->u.text.vert_align);
|
||||||
|
while (n == 12) {
|
||||||
|
char *tilde;
|
||||||
|
|
||||||
|
tilde = strchr(obj->u.text.s, '~');
|
||||||
|
if (!tilde)
|
||||||
|
break;
|
||||||
|
*tilde = ' ';
|
||||||
|
}
|
||||||
|
}
|
||||||
if (n == 12) {
|
if (n == 12) {
|
||||||
if (zero1 || zero2) {
|
if (zero1 || zero2) {
|
||||||
fprintf(stderr, "%u: only understand 0 x x\n",
|
fprintf(stderr, "%u: only understand 0 x x\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user