diff -r 9765c6674f79 -r 0e25700290c4 .emacs-defs --- a/.emacs-defs Tue Apr 14 23:56:55 2015 +0300 +++ b/.emacs-defs Wed Apr 15 00:16:53 2015 +0300 @@ -1,4 +1,4 @@ -;; -*- mode: emacs-lisp; coding: utf-8; fill-column: 78 -*- +;; -*- mode: emacs-lisp; coding: utf-8; fill-column: 78; no-byte-compile: t; -*- (defvar my-usr-lisp-dir (expand-file-name "~/usr/share/emacs/site-lisp") @@ -48,5 +48,5 @@ (message "my--eval-after-load: cannot find %s" feature) 'with-no-warnings) (eval-after-load ',feature - `(funcall (function ,(lambda () ,@forms)))))) + '(funcall (lambda () ,@forms)))))