mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
adjust print verbosity according to the doc
This commit is contained in:
parent
9650e5a1a9
commit
ba2bbea816
1 changed files with 4 additions and 1 deletions
|
|
@ -428,7 +428,7 @@ Put PREFIX in front of it."
|
|||
(byte-compile (comp-func-name func)))
|
||||
(let ((lap (alist-get nil byte-to-native-lap)))
|
||||
(cl-assert lap)
|
||||
(comp-log lap 1)
|
||||
(comp-log lap 2)
|
||||
(let ((lambda-list (aref (comp-func-byte-func func) 0)))
|
||||
(setf (comp-func-args func)
|
||||
(comp-decrypt-lambda-list lambda-list)
|
||||
|
|
@ -1776,6 +1776,9 @@ Prepare every function for final compilation and drive the C back-end."
|
|||
(defun comp-final (_)
|
||||
"Final pass driving the C back-end for code emission."
|
||||
(let (compile-result)
|
||||
(maphash (lambda (_ f)
|
||||
(comp-log-func f 1))
|
||||
(comp-ctxt-funcs-h comp-ctxt))
|
||||
(comp--init-ctxt)
|
||||
(unwind-protect
|
||||
(setf compile-result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue