You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
956 B
Plaintext
45 lines
956 B
Plaintext
15 years ago
|
#usage "<b>Edit next package description</b>\n"
|
||
|
"<p>"
|
||
|
"<author>Author: support@cadsoft.de</author>"
|
||
|
|
||
|
// THIS PROGRAM IS PROVIDED AS IS AND WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR IMPLIED
|
||
|
|
||
|
string cmd = "";
|
||
|
string pac[];
|
||
|
string edit = "";
|
||
|
int count = 0;
|
||
|
int n = 0;
|
||
|
|
||
|
if (library) library(L) {
|
||
|
L.packages(P) {
|
||
|
count++;
|
||
|
pac[count] = P.name;
|
||
|
cmd += P.name + "\n";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (package) package(P) {
|
||
|
edit = P.name;
|
||
|
}
|
||
|
|
||
|
for (n = 1; n < count; n++) {
|
||
|
if (edit == pac[n]) {
|
||
|
// dlgMessageBox(dev[n+1], "+Ok", "-Cancel");
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (n < count) {
|
||
|
cmd = "EDIT " + pac[n + 1] + ".pac;\n DESCRIPT\n" ;
|
||
|
// **************************************************
|
||
|
// a ";" must not follow DESCRIPT
|
||
|
// otherwise the description is overwritten
|
||
|
// with an empty string
|
||
|
// **************************************************
|
||
|
|
||
|
}
|
||
|
else
|
||
|
cmd = "EDIT " + pac[1] + ".pac;\n DESCRIPT\n" ;
|
||
|
|
||
|
exit(cmd);
|