|
|
|
|
|
by Xurinos
5892 days ago
|
|
The maximum size of buffers (and the largest fixnum) is doubled.
On typical 32bit systems, buffers can now be up to 512MB. This limited buffer space has long been a criticism of mine and an often-used point I make when I choose to play the Holy War game between vim and emacs. 512MB is still a weak and arbitrary limitation (vim just uses up your memory), but this is much better than it was. |
|
(let ((i 1024)) (while (> i 0) (setq i (* i 2))) (1- i))
The number it returns is your max file size. Mine is 1152921504606846975 bytes.