mirror of
https://github.com/RTimothyEdwards/netgen.git
synced 2026-08-25 23:47:06 +02:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
821145f9c1 | ||
|
|
6eb1efd55a | ||
|
|
6d569ca396 | ||
|
|
7a0bff846f | ||
|
|
ced1299351 | ||
|
|
f213376bfd | ||
|
|
223b197b71 | ||
|
|
f0eb14be5e | ||
|
|
534ea839c0 |
@@ -1,7 +1,6 @@
|
||||
netgen
|
||||
netgenexec
|
||||
defs.mak
|
||||
Depend
|
||||
config.cache
|
||||
config.log
|
||||
config.status
|
||||
|
||||
@@ -78,6 +78,7 @@ install-tcl-real: install-tcl-dirs
|
||||
clean:
|
||||
for dir in ${MODULES} ${PROGRAMS} ${UNUSED_MODULES}; do \
|
||||
(cd $$dir && ${MAKE} clean); done
|
||||
${RM} *.tmp */*.tmp *.sav */*.sav *.log TAGS tags
|
||||
|
||||
distclean:
|
||||
touch defs.mak
|
||||
|
||||
+2
-8
@@ -884,6 +884,7 @@ skip_endmodule:
|
||||
|
||||
while (nexttok != NULL) {
|
||||
char *paramname;
|
||||
|
||||
SkipTok(VLOG_DELIMITERS2);
|
||||
while (match(nexttok, "//")) {
|
||||
SkipNewLine(VLOG_DELIMITERS);
|
||||
@@ -896,14 +897,7 @@ skip_endmodule:
|
||||
|
||||
// We need to look for parameters of the type ".name(value)"
|
||||
|
||||
SkipTok(VLOG_DELIMITERS2);
|
||||
while (match(nexttok, "//")) {
|
||||
SkipNewLine(VLOG_DELIMITERS);
|
||||
SkipTok(VLOG_DELIMITERS2);
|
||||
}
|
||||
if (nexttok[0] != '.') {
|
||||
Printf("Badly formed subcircuit parameter line at \"%s\"\n", nexttok);
|
||||
}
|
||||
if (nexttok[0] != '.') break;
|
||||
else {
|
||||
paramname = strsave(nexttok + 1);
|
||||
SkipTok(VLOG_DELIMITERS2);
|
||||
|
||||
Reference in New Issue
Block a user