Changes to qemacs/hex.c
Charlie Gordon <[email protected]>
| Newsgroups | gmane.editors.qemacs.devel |
|---|---|
| Message-ID | <[email protected]> |
Index: qemacs/hex.c
diff -u qemacs/hex.c:1.2 qemacs/hex.c:1.3
--- qemacs/hex.c:1.2 Sun May 8 16:31:47 2005
+++ qemacs/hex.c Mon May 9 01:37:13 2005
@@ -173,7 +173,8 @@
for (i = 0; i < size; i++) {
c = buf[i];
if (c < 32 &&
- (c != '\r' && c != '\n' && c != '\t' && c != '\e' && c!= '\b'))
+ (c != '\r' && c != '\n' && c != '\t' &&
+ c != '\e' && c != '\b' && c != '\f'))
return 1;
}
return 0;