blob: 29af6a1f931b5be407eeaafaf8cfb439bf2834ca (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- /dev/null 2013-11-20 22:00:00.000000000 +0300
+++ compile.el 2013-11-20 21:34:57.112822385 +0300
@@ -0,0 +1,13 @@
+;; -*- emacs-lisp -*-
+
+;;
+;; Help ports system compile for emacs and xemacs
+;;
+
+(require 'bytecomp)
+
+(add-to-list 'load-path (expand-file-name "."))
+
+(defun compile-dictem ()
+ (mapcar 'byte-compile-file command-line-args-left))
+
|