[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Enforce standard line length of 80 characters.
From: |
Felix Lechner |
Subject: |
[PATCH] Enforce standard line length of 80 characters. |
Date: |
Mon, 18 Mar 2024 06:19:34 -0700 |
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.
---
debbugs.el | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
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
;; Copyright (C) 2011-2024 Free Software Foundation, Inc.
@@ -259,7 +261,8 @@ patch:
debbugs-progress-reporter-buffers url-show-status vec kw key val)
(when debbugs-show-progress
(add-function
- :override (symbol-function
debbugs-url-display-message-or-percentage-function)
+ :override
+ (symbol-function debbugs-url-display-message-or-percentage-function)
#'debbugs-url-display-message-or-percentage
'((name . "debbugs-url-display-message-or-percentage"))))
@@ -488,7 +491,8 @@ Example:
debbugs-progress-reporter-buffers url-show-status results res)
(when debbugs-show-progress
(add-function
- :override (symbol-function
debbugs-url-display-message-or-percentage-function)
+ :override
+ (symbol-function debbugs-url-display-message-or-percentage-function)
#'debbugs-url-display-message-or-percentage
'((name . "debbugs-url-display-message-or-percentage"))))
@@ -805,7 +809,8 @@ Examples:
(when debbugs-create-progress-reporter
(setq debbugs-progress-reporter (make-progress-reporter "Query bugs..."))
(add-function
- :override (symbol-function
debbugs-url-display-message-or-percentage-function)
+ :override
+ (symbol-function debbugs-url-display-message-or-percentage-function)
#'debbugs-url-display-message-or-percentage
'((name . "debbugs-url-display-message-or-percentage"))))
@@ -976,7 +981,8 @@ BUG-OR-MESSAGE must be list element returned by either
Example: Return the originator of last submitted bug.
\(debbugs-get-attribute
- \(car \(apply #\\='debbugs-get-status \(debbugs-newest-bugs 1)))
\\='originator)"
+ \(car \(apply #\\='debbugs-get-status \(debbugs-newest-bugs 1)))
+ \\='originator)"
(alist-get attribute bug-or-message))
(defun debbugs-get-message-numbers (messages)
base-commit: 5bc4ec9dbde38f0a142fd81e7f54e309069b24b4
--
2.41.0
- Re: [PATCH v2 0/5] Download WSDL for SOAP services from servers, (continued)
- Re: [PATCH v2 0/5] Download WSDL for SOAP services from servers, Michael Albinus, 2024/03/16
- [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 <=
- Re: [PATCH] Enforce standard line length of 80 characters., Michael Albinus, 2024/03/19
- 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