]> git.donarmstrong.com Git - lib.git/commitdiff
add makefile, and rip out xemacs compatibility mode
authorDon Armstrong <don@donarmstrong.com>
Fri, 14 Apr 2006 01:08:19 +0000 (01:08 +0000)
committerDon Armstrong <don@donarmstrong.com>
Fri, 14 Apr 2006 01:08:19 +0000 (01:08 +0000)
emacs_el/Makefile [new file with mode: 0644]
emacs_el/cperl-mode.el

diff --git a/emacs_el/Makefile b/emacs_el/Makefile
new file mode 100644 (file)
index 0000000..ddf9fdb
--- /dev/null
@@ -0,0 +1,14 @@
+#!/usr/bin/make
+
+all: $(patsubst %.el,%.elc,$(wildcard *.el))
+
+%.elc: %.el
+       echo $<|emacs -q -no-site-file --no-site-file -batch -f byte-compile-file;
+
+clean: 
+       rubber -d --clean *.tex
+       rm -f *.tmp
+       rm -f figures/*.pdf
+
+.PHONY: clean all
+
index 2d30676bc0216afd864e6b60350a1cc5e00fcf4c..1cc2f17de50d439b16a76f15bcf75269405b06db 100644 (file)
@@ -3151,18 +3151,6 @@ or as help on variables `cperl-tips', `cperl-problems',
   (set 'vc-header-alist (or cperl-vc-header-alist ; Avoid warning
                            (` ((SCCS (, (car cperl-vc-sccs-header)))
                                     (RCS (, (car cperl-vc-rcs-header)))))))
-  (cond ((boundp 'compilation-error-regexp-alist-alist);; xemacs 20.x
-        (make-local-variable 'compilation-error-regexp-alist-alist)
-        (set 'compilation-error-regexp-alist-alist
-             (cons (cons 'cperl cperl-compilation-error-regexp-alist)
-                   (symbol-value 'compilation-error-regexp-alist-alist)))
-        (let ((f 'compilation-build-compilation-error-regexp-alist))
-          (funcall f)))
-       ((boundp 'compilation-error-regexp-alist);; xmeacs 19.x
-        (make-local-variable 'compilation-error-regexp-alist)
-        (set 'compilation-error-regexp-alist
-              (cons cperl-compilation-error-regexp-alist
-                    (symbol-value 'compilation-error-regexp-alist)))))
   (make-local-variable 'font-lock-defaults)
   (setq        font-lock-defaults
        (cond