equal
deleted
inserted
replaced
1 ;; -*- mode: emacs-lisp; coding: utf-8; fill-column: 78 -*- |
1 ;; -*- mode: emacs-lisp; coding: utf-8; fill-column: 78; no-byte-compile: t; -*- |
2 |
2 |
3 (defvar my-usr-lisp-dir |
3 (defvar my-usr-lisp-dir |
4 (expand-file-name "~/usr/share/emacs/site-lisp") |
4 (expand-file-name "~/usr/share/emacs/site-lisp") |
5 "Here live additional lisp packages.") |
5 "Here live additional lisp packages.") |
6 |
6 |
46 (load feature :no-message :no-error))) |
46 (load feature :no-message :no-error))) |
47 'progn |
47 'progn |
48 (message "my--eval-after-load: cannot find %s" feature) |
48 (message "my--eval-after-load: cannot find %s" feature) |
49 'with-no-warnings) |
49 'with-no-warnings) |
50 (eval-after-load ',feature |
50 (eval-after-load ',feature |
51 `(funcall (function ,(lambda () ,@forms)))))) |
51 '(funcall (lambda () ,@forms))))) |
52 |
52 |