summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Marshall <simon@gnu.org>1996-02-29 08:19:46 +0000
committerSimon Marshall <simon@gnu.org>1996-02-29 08:19:46 +0000
commit9db6669e7e91b7d929c88a07f30b472ba9aee771 (patch)
treea46755be932ee13d9b0db23541540c04745dc566
parent3c839d48ea1714958d5c8793ba949d9e225e7331 (diff)
downloademacs-9db6669e7e91b7d929c88a07f30b472ba9aee771.tar.gz
Save if reqd in emacs-lisp-byte-compile-and-load.
-rw-r--r--lisp/emacs-lisp/lisp-mode.el16
1 files changed, 9 insertions, 7 deletions
diff --git a/lisp/emacs-lisp/lisp-mode.el b/lisp/emacs-lisp/lisp-mode.el
index df288f9339f..1970bd588b2 100644
--- a/lisp/emacs-lisp/lisp-mode.el
+++ b/lisp/emacs-lisp/lisp-mode.el
@@ -155,7 +155,7 @@ All commands in `shared-lisp-mode-map' are inherited by this map.")
(define-key map [byte-recompile]
'("Byte-recompile Directory..." . byte-recompile-directory))
(define-key map [emacs-byte-compile-and-load]
- '("Byte-compile And Load" . emacs-lisp-compile-and-load))
+ '("Byte-compile And Load" . emacs-lisp-byte-compile-and-load))
(define-key map [byte-compile]
'("Byte-compile This File" . emacs-lisp-byte-compile))
(define-key map [separator-eval] '("--"))
@@ -177,18 +177,20 @@ All commands in `shared-lisp-mode-map' are inherited by this map.")
(byte-compile-file buffer-file-name)
(error "The buffer must be saved in a file first")))
-(defun emacs-lisp-compile-and-load ()
+(defun emacs-lisp-byte-compile-and-load ()
"Byte-compile the current file (if it has changed), then load compiled code."
(interactive)
(or buffer-file-name
(error "The buffer must be saved in a file first"))
(require 'bytecomp)
;; Recompile if file or buffer has changed since last compilation.
- (or (buffer-modified-p)
- (file-newer-than-file-p (byte-compile-dest-file buffer-file-name)
- buffer-file-name)
- (byte-compile-file buffer-file-name))
- (load-file (byte-compile-dest-file buffer-file-name)))
+ (if (and (buffer-modified-p)
+ (y-or-n-p (format "save buffer %s first? " (buffer-name))))
+ (save-buffer))
+ (let ((compiled-file-name (byte-compile-dest-file buffer-file-name)))
+ (if (file-newer-than-file-p compiled-file-name buffer-file-name)
+ (load-file compiled-file-name)
+ (byte-compile-file buffer-file-name t))))
(defun emacs-lisp-mode ()
"Major mode for editing Lisp code to run in Emacs.