diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-05-24 21:59:25 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-05-24 21:59:25 +0100 |
commit | 0bba0e367b4b5378501de7c91838ea2de8b4af4a (patch) | |
tree | 4e47cc7a901115be9b954d033031cb539c19f1ec /lisp/emacs-lisp/comp.el | |
parent | 1bc558b77e648efa905076f793d28fc0f025ae50 (diff) | |
download | emacs-0bba0e367b4b5378501de7c91838ea2de8b4af4a.tar.gz emacs-0bba0e367b4b5378501de7c91838ea2de8b4af4a.tar.bz2 emacs-0bba0e367b4b5378501de7c91838ea2de8b4af4a.zip |
Fix GNU style
* src/comp.h: Fix GNU style.
* src/comp.c (Fcomp__compile_ctxt_to_file): Likewise.
* lisp/emacs-lisp/comp.el (comp--replace-output-file): Likewise.
* src/pdumper.c (dump_do_dump_relocation): Likewise.
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 3845827f661..02917cb9a0a 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -2278,8 +2278,9 @@ Prepare every function for final compilation and drive the C back-end." ;; Some entry point support code. (defun comp--replace-output-file (outfile tmpfile) - "Replace OUTFILE with TMPFILE taking the necessary steps when -dealing with shared libraries that may be loaded into Emacs" + "Replace OUTFILE with TMPFILE. +Takes the necessary steps when dealing with shared libraries that +may be loaded into Emacs" (cond ((eq 'windows-nt system-type) (ignore-errors (delete-file outfile)) (let ((retry t)) |