diff src/fileio.c @ 5782:7277cf461612

Use an explicit hexadecimal constant for READ_BUF_SIZE, correct ChangeLog. src/ChangeLog addition: 2014-01-20 Aidan Kehoe <kehoea@parhasard.net> * fileio.c [...] (READ_BUF_SIZE): Use an explicit hexadecimal constant for the 0x20000 value for this, don't left-shift 2 16 times. Correct the last ChangeLog entry after Jerry James pointed out a mistake on my part. Thank you for review and discussion, Jerry and Stephen Turnbull.
author Aidan Kehoe <kehoea@parhasard.net>
date Mon, 20 Jan 2014 18:13:15 +0000
parents 0853e1ec8529
children a216b3c2b09e
line wrap: on
line diff
--- a/src/fileio.c	Mon Jan 20 17:53:07 2014 +0000
+++ b/src/fileio.c	Mon Jan 20 18:13:15 2014 +0000
@@ -1786,7 +1786,7 @@
   return;
 }
 
-#define READ_BUF_SIZE (2 << 16)
+#define READ_BUF_SIZE 0x20000
 
 DEFUN ("copy-file", Fcopy_file, 2, 4,
        "fCopy file: \nFCopy %s to file: \np\nP", /*