From 297b631ff44b9d96ff0a608637d89c003f5511bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Sun, 2 Jan 2011 13:56:02 +0100 Subject: [PATCH] add workaround for org-mode problem (todo: need a cleaner fix...) --- emacs/files/site-start.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/emacs/files/site-start.el b/emacs/files/site-start.el index c020cef..e760ec8 100644 --- a/emacs/files/site-start.el +++ b/emacs/files/site-start.el @@ -20,3 +20,8 @@ ;; or tmm-menubar (menu-bar-mode 0) +;; ugly work-around for load-history entry (require . t-mouse) added by +;; linux.el Not good, as it costs some memory. +(setq load-history + (apply 'nconc (mapcar (lambda (v) (if (stringp (car v)) (list v) nil)) + load-history)))