HHM-MK 311 B

12345678910111213
  1. ;;; -*- Emacs-Lisp -*-
  2. ;; for byte-compile html-helper-mode
  3. ;;; Code
  4. (require 'bytecomp)
  5. (let ((load-path (cons default-directory load-path))
  6. (compile-file-list '("./tempo.el"
  7. "./html-helper-mode.el")))
  8. (message "Compiling -----")
  9. (mapcar 'byte-compile-file compile-file-list))
  10. ;;; ends here