From 0a8a1a55a7969026dbf45626f46ed368842eef72 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 24 Mar 2012 11:43:11 +0000 Subject: [PATCH] Tweak undo history limits Set limits to double of default limits. The previous limits of 10x the defaults might not have been working as expected, as every now and then I'd have a file end up with only 4-5 undo steps. --- custom-variables.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom-variables.el b/custom-variables.el index 5f0e087..b631440 100644 --- a/custom-variables.el +++ b/custom-variables.el @@ -74,8 +74,8 @@ '(standard-indent 2) '(tabbar-mode nil) '(tool-bar-mode nil) - '(undo-limit 800000) - '(undo-strong-limit 1200000) + '(undo-limit 160000) + '(undo-strong-limit 240000) '(undo-tree-mode-lighter "") '(visual-line-mode nil t) '(whitespace-action nil)