.emacs-defs
changeset 1284 0e25700290c4
parent 1278 8e47e801be9d
child 1285 8e2c4332223d
equal deleted inserted replaced
1283:9765c6674f79 1284:0e25700290c4
     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