emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/compat 28a6e2db53 06/27: Remove unnecessary whitespace


From: ELPA Syncer
Subject: [elpa] externals/compat 28a6e2db53 06/27: Remove unnecessary whitespace before closing parentheses
Date: Sat, 5 Mar 2022 04:57:27 -0500 (EST)

branch: externals/compat
commit 28a6e2db535dbc72a0cfec2a08ff54b17832a7f3
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Remove unnecessary whitespace before closing parentheses
---
 compat-27.el | 2 +-
 compat.el    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/compat-27.el b/compat-27.el
index cba7c61d91..e728fb04d9 100644
--- a/compat-27.el
+++ b/compat-27.el
@@ -52,7 +52,7 @@ is nil)."
   (when (listp object)
     (catch 'cycle
       (let ((hare object) (tortoise object)
-            (max 2) (q 2) )
+            (max 2) (q 2))
         (while (consp hare)
           (setq hare (cdr hare))
           (when (and (or (/= 0 (setq q (1- q)))
diff --git a/compat.el b/compat.el
index de4b0e515a..498ad726b7 100644
--- a/compat.el
+++ b/compat.el
@@ -48,7 +48,7 @@
 (defun compat-func-arity (func)
   "A reimplementation of `func-arity' for FUNC."
   (cond
-   ((or (null func) (and (symbolp func) (not (fboundp func))) )
+   ((or (null func) (and (symbolp func) (not (fboundp func))))
     (signal 'void-function func))
    ((and (symbolp func) (not (null func)))
     (compat-func-arity (symbol-function func)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]