From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1554022-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id BCC09158089
	for <garchives@archives.gentoo.org>; Wed, 13 Sep 2023 07:30:02 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 0AD972BC014;
	Wed, 13 Sep 2023 07:30:02 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id EB6CC2BC014
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Sep 2023 07:30:01 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 3AA58335C87
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Sep 2023 07:30:01 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CF14113E
	for <gentoo-commits@lists.gentoo.org>; Wed, 13 Sep 2023 07:29:59 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org>
Message-ID: <1694535537.4d9be8c40ded03641692bcf0d843473e73dd5304.ulm@gentoo>
Subject: [gentoo-commits] proj/emacs-tools:emacs-common commit in: /
X-VCS-Repository: proj/emacs-tools
X-VCS-Files: ChangeLog site-gentoo.el site-start.el subdirs.el.in
X-VCS-Directories: /
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 4d9be8c40ded03641692bcf0d843473e73dd5304
X-VCS-Branch: emacs-common
Date: Wed, 13 Sep 2023 07:29:59 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 99505724-bbdd-4d4d-b0ad-5d8b35798299
X-Archives-Hash: 31986f5443518bf81e502672bb9bf847

commit:     4d9be8c40ded03641692bcf0d843473e73dd5304
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 12 16:18:57 2023 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Sep 12 16:18:57 2023 +0000
URL:        https://gitweb.gentoo.org/proj/emacs-tools.git/commit/?id=4d9be8c4

Enable lexical binding

* site-start.el:
* site-gentoo.el:
* subdirs.el.in: Enable lexical binding.

Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 ChangeLog      | 6 ++++++
 site-gentoo.el | 2 +-
 site-start.el  | 2 +-
 subdirs.el.in  | 2 +-
 4 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 9e4ede9..bab40f8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2023-09-12  Ulrich Müller  <ulm@gentoo.org>
+
+	* site-start.el:
+	* site-gentoo.el:
+	* subdirs.el.in: Enable lexical binding.
+
 2023-07-24  Ulrich Müller  <ulm@gentoo.org>
 
 	* Version 1.9 released.

diff --git a/site-gentoo.el b/site-gentoo.el
index 9a40311..427c491 100644
--- a/site-gentoo.el
+++ b/site-gentoo.el
@@ -1,4 +1,4 @@
-;;; site-gentoo.el --- site initialisation for Gentoo-installed packages
+;;; site-gentoo.el --- Gentoo site initialisation  -*-lexical-binding:t-*-
 
 ;;; Commentary:
 ;; Automatically generated by elisp-common.eclass

diff --git a/site-start.el b/site-start.el
index 0ec3785..314ede5 100644
--- a/site-start.el
+++ b/site-start.el
@@ -1,4 +1,4 @@
-;;; site-start.el			-*- no-byte-compile: t -*-
+;;; site-start.el  -*- lexical-binding: t; no-byte-compile: t; -*-
 
 ;;; Commentary:
 ;; This is the site startup file for GNU Emacs. It is loaded before

diff --git a/subdirs.el.in b/subdirs.el.in
index 3432bf0..81e0e1b 100644
--- a/subdirs.el.in
+++ b/subdirs.el.in
@@ -1,4 +1,4 @@
-;; -*- no-byte-compile: t -*-
+;; -*- lexical-binding: t; no-byte-compile: t; -*-
 (when (fboundp 'normal-top-level-add-subdirs-to-load-path)
   (normal-top-level-add-subdirs-to-load-path)
   ;; We install dynamic modules in a more FHS compliant location,