diff options
| author | Paul Eggert | 2018-06-24 23:46:18 -0700 |
|---|---|---|
| committer | Paul Eggert | 2018-06-24 23:46:18 -0700 |
| commit | f43186fe28e87738e9ea48216e5a5b67d2742d76 (patch) | |
| tree | f1ce135efc3b65560081dcf49566bb2866af85fb /src/data.c | |
| parent | 4c3306e12fb4db07a0cae8bdc6291d2efb019933 (diff) | |
| download | emacs-f43186fe28e87738e9ea48216e5a5b67d2742d76.tar.gz emacs-f43186fe28e87738e9ea48216e5a5b67d2742d76.zip | |
Revert previous patch; comment was OK after all.
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 677791c594f..4bee194e296 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. VAL must not be zero. */ | 3314 | /* Compute the number of trailing zero bits in val. If val is zero, |
| 3315 | 3315 | return the number of bits in val. */ | |
| 3316 | static int | 3316 | static int |
| 3317 | count_trailing_zero_bits (bits_word val) | 3317 | count_trailing_zero_bits (bits_word val) |
| 3318 | { | 3318 | { |