[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] Enforce standard line length of 80 characters.
From: |
Michael Albinus |
Subject: |
Re: [PATCH] Enforce standard line length of 80 characters. |
Date: |
Tue, 19 Mar 2024 10:11:23 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Felix Lechner <felix.lechner@lease-up.com> writes:
Hi Felix,
> Sorry, please replace the patch of the same name in the series with
> this one. The lexical binding solution offered on #emacs was not
> stable.
>
> diff --git a/debbugs.el b/debbugs.el
> index d359aa0a23..67d1d74778 100644
> --- a/debbugs.el
> +++ b/debbugs.el
> @@ -1,4 +1,6 @@
> -;;; debbugs.el --- SOAP library to access debbugs servers -*-
> lexical-binding:t -*-
> +;; -*- lexical-binding: t -*-
> +
> +;;; debbugs.el --- SOAP library to access debbugs servers
This is a general problem in Emacs Lisp files. The ";;; <package>.el ..."
line must the first one, so that finder-inf finds the file. And the
"-*- lexical-binding:t -*-" cookie must also be in the first line.
As consequence, it is allowed for the very first line of a Lisp file to
exceed the 80 char limit. I have applied this patch w/o touching the
first line.
(In the very long run, it is planned to make lexical binding the default
in Emacs, and we wouldn't need this cookie anymore. But I doubt this
will happen during my lifetime :-)
Best regards, Michael.
- [PATCH v3 0/8] Download WSDL for SOAP services from servers, (continued)
- [PATCH v3 0/8] Download WSDL for SOAP services from servers, Felix Lechner, 2024/03/18
- [PATCH v3 1/8] Enforce standard line length of 80 characters., Felix Lechner, 2024/03/18
- [PATCH v3 3/8] Fix docstring for :affects., Felix Lechner, 2024/03/18
- [PATCH v3 8/8] Download WSDL specification dynamically from selected server., Felix Lechner, 2024/03/18
- [PATCH v3 4/8] Fix description in docstring for debbugs-ports., Felix Lechner, 2024/03/18
- [PATCH v3 5/8] Bring labels for debbugs-cache-expiry in line with docstring., Felix Lechner, 2024/03/18
- [PATCH v3 7/8] Split the WSDL file into two that could be served remotely., Felix Lechner, 2024/03/18
- [PATCH v3 6/8] Offer cache facility for WSDL specification; default to no expiry., Felix Lechner, 2024/03/18
- [PATCH v3 2/8] Don't hardcode gnu.org as debbugs-port for Gnus interface., Felix Lechner, 2024/03/18
- [PATCH] Enforce standard line length of 80 characters., Felix Lechner, 2024/03/18
- Re: [PATCH] Enforce standard line length of 80 characters.,
Michael Albinus <=
- Re: [PATCH v3 0/8] Download WSDL for SOAP services from servers, Michael Albinus, 2024/03/19
- Re: [PATCH v3 0/8] Download WSDL for SOAP services from servers, Felix Lechner, 2024/03/20
- Re: [PATCH v3 0/8] Download WSDL for SOAP services from servers, Michael Albinus, 2024/03/21