]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't byte compile early-init.el
authorPo Lu <luangruo@yahoo.com>
Sun, 2 Mar 2025 11:23:44 +0000 (19:23 +0800)
committerEshel Yaron <me@eshelyaron.com>
Tue, 4 Mar 2025 21:01:34 +0000 (22:01 +0100)
* test/infra/android/early-init.el (frame-initialize): Remove
redundant debugging printouts.

(cherry picked from commit c73003ade161a50728aa15cc10967ad04fe90b05)

test/infra/android/early-init.el

index a9843ac856f855788c0927580b16ae4349acc37c..379b557279f2c58d6cc33a60cb58141bbd1944e1 100644 (file)
@@ -1,4 +1,5 @@
-;;; Suppress deletion of the initial frame by `frame-initialize'.  -*- lexical-binding:t -*-
+;;; Suppress deletion of the initial frame by `frame-initialize'.
+;; $Id: early-init.el,v 1.2 2025/03/02 11:18:42 jw Exp $
 
 ;; Copyright (C) 2025 Free Software Foundation, Inc.
 
 
 \f
 
-(message "Loading early-init.el...")
-
 (advice-add 'frame-initialize :around
             (lambda (oldfun &rest args)
               (let ((subr (symbol-function 'delete-frame))
                     (terminal-frame terminal-frame))
                 (unwind-protect
                     (progn
-                      (message "Suppressed deletion of the initial frame.")
                       (fset 'delete-frame #'ignore)
                       (apply oldfun args))
                   (fset 'delete-frame subr)))))
+
+;; Local Variables:
+;; no-byte-compile: t
+;; End: