[2191] in testers
Re: 7.4G edsc bugs
daemon@ATHENA.MIT.EDU (Marc Horowitz)
Sat Jul 11 16:49:36 1992
To: Richard J. Barbalace <rjbarbal@Athena.MIT.EDU>
Cc: bug-discuss@MIT.EDU, testers@Athena.MIT.EDU
Reply-To: Marc Horowitz <marc@MIT.EDU>
Date: Sat, 11 Jul 92 16:48:33 EDT
From: Marc Horowitz <marc@MIT.EDU>
>> Every other time the cursor approaches the end of the meetings list, my
>> listing looks like this:
>> .....
This is caused by you pressing "l" twice, very quickly. Since edsc is
asynchronous, this causes two list-meeting requests to go out, and
both get inserted into the buffer. So, you actually have two meeting
lists, one real, and one phantom, in your meetings buffer.
Looking at the elisp, the solution seems to be removing
(let ((buffer-read-only nil))
(erase-buffer))
from (discuss-list-meeings), and putting it at the top of
discuss-end-of-lsm.
Marc