[வியாழன் டிசம்பர் 26, 2024] Eli Zaretskii wrote: >> [...] >> >> +++ # >> >> @@ -2089,8 +2089,10 @@ >> >> `( mouse-face highlight >> >> help-echo "mouse-1: revert this buffer" >> >> keymap ,(define-keymap >> >> - "" #'revert-buffer >> >> - "" 'follow-link >> >> + "" (lambda (_) >> >> + (interactive "@e") >> >> + (revert-buffer)) >> >> + "" 'mouse-face >> > >> > I don't know how to fix the mouse-1 problem in a sensible way either. >> > Does anyone? >> > >> > (And I think in this version the "e" code in `interactive' isn't >> > significant - but let's first see if we can improve the behavior even >> > more.) >> >> Indeed, I thought @ had to go with e _always_. > > Thanks, so please post a proper patch with a commit log message, so I > could install it. Thanks, patch attached.