qemacs-commit
[Top][All Lists]
Advanced

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

[Qemacs-commit] qemacs extras.c


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs extras.c
Date: Mon, 10 Mar 2014 01:56:17 +0000

CVSROOT:        /sources/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        14/03/10 01:56:17

Modified files:
        .              : extras.c 

Log message:
        fix describe-buffer byte stats table

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/extras.c?cvsroot=qemacs&r1=1.21&r2=1.22

Patches:
Index: extras.c
===================================================================
RCS file: /sources/qemacs/qemacs/extras.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -b -r1.21 -r1.22
--- extras.c    10 Feb 2014 21:21:40 -0000      1.21
+++ extras.c    10 Mar 2014 01:56:16 -0000      1.22
@@ -831,15 +831,16 @@
             case '\'':  c = '\''; break;
             default: c = 0; break;
             }
+            col += eb_printf(b1, " %5d", count[i]);
+
             if (c != 0)
                 col += eb_printf(b1, "  '\\%c'", c);
             else
             if (i >= ' ' && i < 0x7f)
-                col += eb_printf(b1, "   '%c'", i);
+                col += eb_printf(b1, "  '%c' ", i);
             else
                 col += eb_printf(b1, "  0x%02x", i);
 
-            col += eb_printf(b1, "  %-4d", count[i]);
             if (col >= 60) {
                 eb_printf(b1, "\n");
                 col = 0;



reply via email to

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