--- a/.emacs-my Wed Jun 23 16:10:12 2010 +0300
+++ b/.emacs-my Wed Jun 23 16:10:21 2010 +0300
@@ -178,6 +178,9 @@
;; Try to speed things up, especially in VM.
(setq gc-cons-threshold 2000000)
+;; Default 'command-history' length too short (in Emacs 23.2 is 30).
+(setq history-length 200)
+
;; Don't beep in my headphones!
(setq ring-bell-function '(lambda () "Empty ring-bell-function." nil))
(setq visible-bell t) ; With default ring-bell-function in text terminal
@@ -471,7 +474,7 @@
;; Its take time and ask passwords!
(setq recentf-auto-cleanup 'never)
(recentf-mode t)
-(setq recentf-max-saved-items 200)
+(setq recentf-max-saved-items 1000)
(global-set-key (kbd "\e\eq") 'recentf-open-files)
;; ----------------------------------------------------------------------