Changes to qemacs/fbftoqe.c
Charlie Gordon <[email protected]> Wed, 11 May 2005 11:12:16 -0400
| Newsgroups | gmane.editors.qemacs.devel |
|---|---|
| Message-ID | <[email protected]> |
Index: qemacs/fbftoqe.c
diff -u qemacs/fbftoqe.c:1.1.1.1 qemacs/fbftoqe.c:1.2
--- qemacs/fbftoqe.c:1.1.1.1 Sat May 29 10:18:54 2004
+++ qemacs/fbftoqe.c Wed May 11 15:12:14 2005
@@ -20,7 +20,7 @@
}
printf("static const unsigned char font_%s[] = {\n", name);
j = 0;
- for(;;) {
+ for (;;) {
c = fgetc(f);
if (c == EOF)
break;
@@ -62,7 +62,7 @@
printf("#include \"qe.h\"\n\n");
- for(i=1;i<argc;i++) {
+ for (i = 1; i < argc; i++) {
filename = argv[i];
getname(name, sizeof(name), filename);
dump_font(filename, name);
@@ -70,7 +70,7 @@
/* dump font list */
printf("const void *fbf_fonts[] = {\n");
- for(i=1;i<argc;i++) {
+ for (i = 1; i < argc; i++) {
FILE *f;
int size;
filename = argv[i];