Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
53be3141
Commit
53be3141
authored
Dec 22, 2007
by
dickelbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more specctra dsn import/export work
parent
b55e819b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
dsn.cpp
pcbnew/dsn.cpp
+8
-1
No files found.
pcbnew/dsn.cpp
View file @
53be3141
...
...
@@ -1096,6 +1096,13 @@ L_read:
curText
+=
*
cur
;
head
=
cur
+
1
;
if
(
head
<
limit
&&
*
head
!=
')'
&&
*
head
!=
'('
&&
!
isspace
(
*
head
)
)
{
wxString
errtxt
(
_
(
"String delimiter char must be a single char"
)
);
ThrowIOError
(
errtxt
,
cur
-
start
+
1
);
}
curTok
=
T_QUOTE_DEF
;
}
...
...
@@ -1112,7 +1119,7 @@ L_read:
if
(
head
>=
limit
)
{
wxString
errtxt
(
_
(
"Un-terminated delimited string"
)
);
ThrowIOError
(
errtxt
,
limit
-
start
+
1
);
ThrowIOError
(
errtxt
,
cur
-
start
+
1
);
}
curText
.
clear
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment