Mercurial > emacs
comparison src/termcap.c @ 10753:e0de204ec865
Comment changed.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 14 Feb 1995 17:12:41 +0000 |
parents | 97096cdf6e55 |
children | e34e076c5d47 |
comparison
equal
deleted
inserted
replaced
10752:e4fb5e01090a | 10753:e0de204ec865 |
---|---|
321 } | 321 } |
322 while (*str) | 322 while (*str) |
323 (*outfun) (*str++); | 323 (*outfun) (*str++); |
324 | 324 |
325 /* PADCOUNT is now in units of tenths of msec. | 325 /* PADCOUNT is now in units of tenths of msec. |
326 SPEED is mesured in characters per 10 seconds | 326 SPEED is measured in characters per 10 seconds |
327 or in characters per .1 seconds (if negative). | 327 or in characters per .1 seconds (if negative). |
328 We use the smaller units for larger speeds to avoid overflow. */ | 328 We use the smaller units for larger speeds to avoid overflow. */ |
329 padcount *= speed; | 329 padcount *= speed; |
330 padcount += 500; | 330 padcount += 500; |
331 padcount /= 1000; | 331 padcount /= 1000; |