[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 1/8] Enforce standard line length of 80 characters.
From: |
Felix Lechner |
Subject: |
[PATCH v3 1/8] Enforce standard line length of 80 characters. |
Date: |
Mon, 18 Mar 2024 06:07:02 -0700 |
---
debbugs.el | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/debbugs.el b/debbugs.el
index d359aa0a23..2c0fd339b0 100644
--- a/debbugs.el
+++ b/debbugs.el
@@ -1,4 +1,4 @@
-;;; debbugs.el --- SOAP library to access debbugs servers -*-
lexical-binding:t -*-
+;;; debbugs.el --- SOAP library to access debbugs servers
;; Copyright (C) 2011-2024 Free Software Foundation, Inc.
@@ -259,7 +259,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 +489,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 +807,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 +979,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)
@@ -1047,4 +1051,8 @@ current buffer."
;;; TODO:
+;; Local Variables:
+;; lexical-binding: t
+;; End:
+
;;; debbugs.el ends here
--
2.41.0
- [PATCH v2 0/5] Download WSDL for SOAP services from servers, Felix Lechner, 2024/03/15
- [PATCH v2 1/5] Don't hardcode gnu.org as debbugs-port for Gnus interface., Felix Lechner, 2024/03/15
- [PATCH v2 2/5] Fix docstring for :affects., Felix Lechner, 2024/03/15
- [PATCH v2 3/5] Fix description in docstring for debbugs-ports., Felix Lechner, 2024/03/15
- [PATCH v2 5/5] Download WSDL specification dynamically from selected server., Felix Lechner, 2024/03/15
- [PATCH v2 4/5] Bring labels for debbugs-cache-expiry in line with docstring., Felix Lechner, 2024/03/15
- 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 <=
- [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, 2024/03/19
- Re: [PATCH v3 0/8] Download WSDL for SOAP services from servers, Michael Albinus, 2024/03/19