diff options
| author | Paul Eggert | 2018-06-24 23:21:01 -0700 |
|---|---|---|
| committer | Paul Eggert | 2018-06-24 23:21:23 -0700 |
| commit | 4c3306e12fb4db07a0cae8bdc6291d2efb019933 (patch) | |
| tree | 5cb2cc81d7f632c7e290b5105e34ff134663f5d0 /src/data.c | |
| parent | b419f27a43702045f8cd87282d89dccc9c39fd9d (diff) | |
| download | emacs-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/data.c')
| -rw-r--r-- | src/data.c | 4 |
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 | |
| 3316 | static int | 3316 | static int |
| 3317 | count_trailing_zero_bits (bits_word val) | 3317 | count_trailing_zero_bits (bits_word val) |
| 3318 | { | 3318 | { |