* mail/rmail.el (rmail-variables): Set auto-save-include-big-deletions to t.
+2009-07-21 Chong Yidong <cyd@stupidchicken.com>
+
+ * mail/rmailedit.el (rmail-edit-mode): Set
+ auto-save-include-big-deletions to t.
+
+ * mail/rmail.el (rmail-variables): Set
+ auto-save-include-big-deletions to t.
+
2009-07-20 Chong Yidong <cyd@stupidchicken.com>
* term/pc-win.el (x-display-name, x-colors)
;; Don't let a local variables list in a message cause confusion.
(make-local-variable 'local-enable-local-variables)
(setq local-enable-local-variables nil)
+ ;; Don't turn off auto-saving based on the size of the buffer
+ ;; because that code does not understand buffer-swapping.
+ (make-local-variable 'auto-save-include-big-deletions)
+ (setq auto-save-include-big-deletions t)
(make-local-variable 'revert-buffer-function)
(setq revert-buffer-function 'rmail-revert)
(make-local-variable 'font-lock-defaults)
(if (boundp 'mode-line-modified)
(setq mode-line-modified (default-value 'mode-line-modified))
(setq mode-line-format (default-value 'mode-line-format)))
+ ;; Don't turn off auto-saving based on the size of the buffer
+ ;; because that code does not understand buffer-swapping.
+ (make-local-variable 'auto-save-include-big-deletions)
+ (setq auto-save-include-big-deletions t)
;; If someone uses C-x C-s, don't clobber the rmail file (bug#2625).
(add-hook 'write-region-annotate-functions
'rmail-write-region-annotate nil t)