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

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

[nongnu] elpa/base32 5e5f311775 077/103: Fix a checkdoc warning in base3


From: ELPA Syncer
Subject: [nongnu] elpa/base32 5e5f311775 077/103: Fix a checkdoc warning in base32-lsh
Date: Sat, 10 Feb 2024 13:00:10 -0500 (EST)

branch: elpa/base32
commit 5e5f311775f08ea6411533f9c82e76a38cce4c8c
Author: Vivek Das Mohapatra <vivek@collabora.com>
Commit: Vivek Das Mohapatra <vivek@collabora.com>

    Fix a checkdoc warning in base32-lsh
---
 base32.el | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/base32.el b/base32.el
index 00c5ffa44d..5ef61d9c11 100644
--- a/base32.el
+++ b/base32.el
@@ -21,7 +21,10 @@ possible 5bit value (0-31) at that index, plus a padding 
character
 at index 32.")
 
 (defun base32-lsh (v c)
-  "Suppress opinionated (and in our case wrong) warning about ’lsh’."
+  "Shift integer V by C bits to the left.
+Shift rightwards if C is negative.
+Any bits shifted in are 0.
+Suppress opinionated (and in our case wrong) warning about ’lsh’."
   (with-suppressed-warnings ((suspicious lsh))
     (lsh v c)))
 



reply via email to

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