qemacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemacs-devel] Changes to qemacs/unihex.c


From: Charlie Gordon
Subject: [Qemacs-devel] Changes to qemacs/unihex.c
Date: Wed, 11 May 2005 11:12:18 -0400

Index: qemacs/unihex.c
diff -u qemacs/unihex.c:1.1.1.1 qemacs/unihex.c:1.2
--- qemacs/unihex.c:1.1.1.1     Sat May 29 10:18:12 2004
+++ qemacs/unihex.c     Wed May 11 15:12:14 2005
@@ -56,7 +56,7 @@
     display_printf(ds, -1, -1, "%08x ", offset);
 
     len = 0;
-    for(j=0;j<s->disp_width;j++) {
+    for (j = 0; j < s->disp_width; j++) {
         if (offset < s->b->total_size) {
             b = eb_nextc(s->b, offset, &offset1);
             pos[len] = offset;
@@ -67,7 +67,7 @@
     }
     pos[len] = offset;
 
-    for(j=0;j<s->disp_width;j++) {
+    for (j = 0; j < s->disp_width; j++) {
         display_char(ds, -1, -1, ' ');
         if (j < len) {
             display_printhex(ds, pos[j], pos[j+1], buf[j], 4);
@@ -85,7 +85,7 @@
     display_char(ds, -1, -1, ' ');
     display_char(ds, -1, -1, ' ');
 
-    for(j=0;j<s->disp_width;j++) {
+    for (j = 0; j < s->disp_width; j++) {
         if (j < len) {
             b = buf[j];
             if (b < ' ' || b == 127)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]