Robert Pluim writes: > Sven Willner writes: > >> (ignore-errors >> (delete-file auto-save-file-name)) >> (let ((message-draft-article draft-article)) >> (message-disassociate-draft))) >> + (when (and (and auto-save-file-name >> + (file-exists-p auto-save-file-name)) >> + (and file-name >> + (file-exists-p file-name)) > > (when (and auto-save-file-name > (file-exists-p auto-save-file-name) > file-name > (file-exists-p file-name)) > > perhaps? You could even drop the 'when'. > > Robert