| Revision 756, 311 bytes checked in by iwaim, 16 years ago (diff) |
|---|
| Rev | Line | |
|---|---|---|
| [756] | 1 | ;;; -*- Emacs-Lisp -*- |
| 2 | ;; for byte-compile html-helper-mode | |
| 3 | ||
| 4 | ;;; Code | |
| 5 | (require 'bytecomp) | |
| 6 | ||
| 7 | (let ((load-path (cons default-directory load-path)) | |
| 8 | (compile-file-list '("./tempo.el" | |
| 9 | "./html-helper-mode.el"))) | |
| 10 | (message "Compiling -----") | |
| 11 | (mapcar 'byte-compile-file compile-file-list)) | |
| 12 | ||
| 13 | ;;; ends here |