projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b419f27
)
Fix lead comment for count_trailing_zero_bits
author
Paul Eggert
<eggert@cs.ucla.edu>
Mon, 25 Jun 2018 06:21:01 +0000
(23:21 -0700)
committer
Paul 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
patch
|
blob
|
history
diff --git
a/src/data.c
b/src/data.c
index 4bee194e296d3b46c59bf48e4939c9052f6c4c6c..677791c594f9a09f121e7db0ba5bb4d4a8fed198 100644
(file)
--- a/
src/data.c
+++ b/
src/data.c
@@
-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)
{