# HG changeset patch # User Oleksandr Gavenko # Date 1429046213 -10800 # Node ID 0e25700290c4648079a8c5289d8cc35565a1b8ce # Parent 9765c6674f793afde2e6ebbf3b2f35c442d035a5 Simplify expression. 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)))))