]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix lead comment for count_trailing_zero_bits
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 25 Jun 2018 06:21:01 +0000 (23:21 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 25 Jun 2018 06:21:23 +0000 (23:21 -0700)
* src/data.c (count_trailing_zero_bits): Fix comment to match code.

src/data.c

index 4bee194e296d3b46c59bf48e4939c9052f6c4c6c..677791c594f9a09f121e7db0ba5bb4d4a8fed198 100644 (file)
@@ -3311,8 +3311,8 @@ pre_value (bool precondition, int value)
   return precondition ? value : 0;
 }
 
-/* Compute the number of trailing zero bits in val.  If val is zero,
-   return the number of bits in val.  */
+/* Compute the number of trailing zero bits in VAL.  VAL must not be zero.  */
+
 static int
 count_trailing_zero_bits (bits_word val)
 {