aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorPaul Eggert2018-06-24 23:46:18 -0700
committerPaul Eggert2018-06-24 23:46:18 -0700
commitf43186fe28e87738e9ea48216e5a5b67d2742d76 (patch)
treef1ce135efc3b65560081dcf49566bb2866af85fb /src/data.c
parent4c3306e12fb4db07a0cae8bdc6291d2efb019933 (diff)
downloademacs-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.c4
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. */
3316static int 3316static int
3317count_trailing_zero_bits (bits_word val) 3317count_trailing_zero_bits (bits_word val)
3318{ 3318{