janssen@parc.xerox.com (Bill Janssen) (06/29/90)
In the routine DoClick(), the code for right-clicking on the folder icon should classify all marked messages into that folder. Currently, captions_FileCurrent() is called, instead of the correct captions_FileMarked(). This looks like a bug -- FileCurrent is called if the click was a LeftClick, and then in a separate clause, if it was not a left click. The function called should be changed to captions_FileMarked(). (I'd supply diffs, but my folders.c file is changed in other places...) Bill
nsb@THUMPER.BELLCORE.COM (Nathaniel Borenstein) (07/02/90)
Bill is mostly right -- however, it should also test to see if the EXP_MARKING binary option has been turned on. If it hasn't, it should still call FileCurrent instead of FileMarked. -- NB