rust/cargo-c: update to 0.10.7+cargo-0.84.0
[oi-userland.git] / components / editor / emacs / patches / 02-increase.puresize.patch
blob5017066b5fc3b7db09703b38a6a5f95d96970c99
1 In some situations Emacs' default Pure Storage is not big enough. This leads to warnings like
2 Warning Warning!!! Pure space overflow !!!Warning Warning
4 The Lisp Manual at https://www.gnu.org/software/emacs/manual/html_node/elisp/Pure-Storage.html
5 recommends to increase the pure storage size during compilation time which is what we do with this patch.
6 --- emacs-27.2/src/puresize.h.orig 2021-01-28 18:52:20.000000000 +0000
7 +++ emacs-27.2/src/puresize.h 2021-03-26 20:38:22.128513814 +0000
8 @@ -39,7 +39,7 @@
9 amount of storage. This is a lot more update-robust that defining
10 BASE_PURESIZE or even PURESIZE directly. */
11 #ifndef SYSTEM_PURESIZE_EXTRA
12 -#define SYSTEM_PURESIZE_EXTRA 0
13 +#define SYSTEM_PURESIZE_EXTRA 1000000
14 #endif
16 #ifndef SITELOAD_PURESIZE_EXTRA