Re: [COMMIT] Increase READ_BUF_SIZE, used in #'insert-file-contents-internal, to #x10000
Jerry James <[email protected]>
| Newsgroups | gmane.emacs.xemacs.patches |
|---|---|
| Message-ID | <CAHCOHQn+QBjSfdbCDYCqiX9Owgtj=6LzxtNPxegLU83=JwNKuQ@mail.gmail.com> |
On Thu, Jan 16, 2014 at 1:39 PM, Aidan Kehoe <[email protected]> wrote: > > -/* Stack sizes > 2**16 is a good way to elicit compiler bugs */ > -/* #define READ_BUF_SIZE (2 << 16) */ > -#define READ_BUF_SIZE (1 << 15) > +#define READ_BUF_SIZE (2 << 16) > (2 << 16) != 2**16 == #x10000. That would be (1 << 16); what you have there is 2**17 == #x20000. -- Jerry James http://www.jamezone.org/ _______________________________________________ XEmacs-Patches mailing list [email protected] http://lists.xemacs.org/mailman/listinfo/xemacs-patches