diff options
| author | Richard M. Stallman | 1993-12-26 09:06:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-12-26 09:06:44 +0000 |
| commit | 66c30ea1e43bad76702fca11211f2932aea54419 (patch) | |
| tree | bbc9dd65df68b4a5a2dd516e0cb73c981b7ae8df /src | |
| parent | 9257d3746ec6a83edce0a96e1de2a2c8b6667042 (diff) | |
| download | emacs-66c30ea1e43bad76702fca11211f2932aea54419.tar.gz emacs-66c30ea1e43bad76702fca11211f2932aea54419.zip | |
(XTflush): FIx typo in last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xterm.c b/src/xterm.c index 5df8f37b0d6..c4a4d18829a 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -871,7 +871,7 @@ XTflash (f) | |||
| 871 | { | 871 | { |
| 872 | struct timeval wakeup, now; | 872 | struct timeval wakeup, now; |
| 873 | 873 | ||
| 874 | EMACS_GET_TIME (&wakeup); | 874 | EMACS_GET_TIME (wakeup); |
| 875 | 875 | ||
| 876 | /* Compute time to wait until, propagating carry from usecs. */ | 876 | /* Compute time to wait until, propagating carry from usecs. */ |
| 877 | wakeup.tv_usec += 150000; | 877 | wakeup.tv_usec += 150000; |
| @@ -883,7 +883,7 @@ XTflash (f) | |||
| 883 | { | 883 | { |
| 884 | struct timeval timeout; | 884 | struct timeval timeout; |
| 885 | 885 | ||
| 886 | EMACS_GET_TIME (&timeout); | 886 | EMACS_GET_TIME (timeout); |
| 887 | 887 | ||
| 888 | /* In effect, timeout = wakeup - timeout. | 888 | /* In effect, timeout = wakeup - timeout. |
| 889 | Break if result would be negative. */ | 889 | Break if result would be negative. */ |