Changes to qemacs/display.c

Charlie Gordon <[email protected]> Wed, 11 May 2005 11:12:16 -0400
Newsgroups gmane.editors.qemacs.devel
Message-ID <[email protected]>
Index: qemacs/display.c
diff -u qemacs/display.c:1.2 qemacs/display.c:1.3
--- qemacs/display.c:1.2	Thu May  5 17:21:54 2005
+++ qemacs/display.c	Wed May 11 15:12:14 2005
@@ -153,7 +153,7 @@
 
     min_ts = MAXINT;
     min_index = 0;
-    for(i=0;i<FONT_CACHE_SIZE;i++) {
+    for (i = 0; i < FONT_CACHE_SIZE; i++) {
         fc = font_cache[i];
         if (fc) {
             if (fc->style == style && fc->size == size) {
@@ -174,9 +174,9 @@
         close_font(s, font_cache[min_index]);
     fc = open_font(s, style, size);
     if (!fc) {
-	/* select_font never returns NULL */ 
+        /* select_font never returns NULL */ 
         fc = &dummy_font;
-	fc->system_font = 1;
+        fc->system_font = 1;
     }
 
     fc->style = style;