From 85d290154258d0fc421877df7132b5d76f7ff8dd Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Sat, 21 Sep 2013 18:15:00 +0900 Subject: [PATCH] alias make as compile --- emacs.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/emacs.el b/emacs.el index be2af09..392f10a 100644 --- a/emacs.el +++ b/emacs.el @@ -1889,10 +1889,11 @@ if arg given, use that eshell buffer, otherwise make new eshell buffer." (define-key ctl-x-map "s" 'my-rgrep) -(defun make () - "Run \"make -k\" in current directory." - (interactive) - (compile "make -k")) +;; (defun make () +;; "Run \"make -k\" in current directory." +;; (interactive) +;; (compile "make -k")) +(defalias 'make 'compile) (defvar sed-in-place-history nil "History of `sed-in-place'")