aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2018-06-24 23:21:01 -0700
committerPaul Eggert2018-06-24 23:21:23 -0700
commit4c3306e12fb4db07a0cae8bdc6291d2efb019933 (patch)
tree5cb2cc81d7f632c7e290b5105e34ff134663f5d0 /src
parentb419f27a43702045f8cd87282d89dccc9c39fd9d (diff)
downloademacs-4c3306e12fb4db07a0cae8bdc6291d2efb019933.tar.gz
emacs-4c3306e12fb4db07a0cae8bdc6291d2efb019933.zip
Fix lead comment for count_trailing_zero_bits
* src/data.c (count_trailing_zero_bits): Fix comment to match code.
Diffstat (limited to 'src')
-rw-r--r--src/data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 4bee194e296..677791c594f 100644
--- a/src/data.c
+++ b/src/data.c
@@ -3311,8 +3311,8 @@ pre_value (bool precondition, int value)
3311 return precondition ? value : 0; 3311 return precondition ? value : 0;
3312} 3312}
3313 3313
3314/* Compute the number of trailing zero bits in val. If val is zero, 3314/* Compute the number of trailing zero bits in VAL. VAL must not be zero. */
3315 return the number of bits in val. */ 3315
3316static int 3316static int
3317count_trailing_zero_bits (bits_word val) 3317count_trailing_zero_bits (bits_word val)
3318{ 3318{