tr2post and aux/download; download is a shell script in $PLAN9/bin.

This commit is contained in:
wkj 2004-05-17 02:24:15 +00:00
parent 8a3cbc1579
commit e8fb1d3efb
21 changed files with 110 additions and 74 deletions

View file

@ -44,7 +44,7 @@ readDESC(void) {
char *descnameformat = "%s/dev%s/DESC";
char *descfilename = 0;
Biobuf *bfd;
Biobufhdr *Bfd;
Biobuf *Bfd;
int i, state = -1;
int fontindex = 0;
@ -52,7 +52,7 @@ readDESC(void) {
descfilename = galloc(descfilename, strlen(descnameformat)+strlen(FONTDIR)
+strlen(devname), "readdesc");
sprint(descfilename, descnameformat, FONTDIR, devname);
if ((bfd = Bopen(descfilename, OREAD)) == 0) {
if ((bfd = Bopen(unsharp(descfilename), OREAD)) == 0) {
error(WARNING, "cannot open file %s\n", descfilename);
return(0);
}
@ -136,4 +136,5 @@ readDESC(void) {
}
}
Bterm(Bfd);
return 0;
}