On Thu, Aug 10, 2017 at 1:54 PM Kaushal Modi wrote: > From my testing, this commit has fixed the issues I mentioned earlier: > http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=81656add8117e8d1b7faab18b330d0706462b433 > > Thanks! > Hi Tom, I replied too soon. I found this use case which is still broken, in emacs-lisp-mode: ==== (defcustom foo-boolean nil "Some foo variable. Some long description that needs to be auto-filled and will span multiple lines." :group 'foo :type 'boolean) ===== With the point anywhere in the doc-string, hit M-q. You will get: ===== (defcustom foo-boolean nil "Some foo variable. Some long description that needs to be auto-filled and will span multiple lines." :group 'foo :type 'boolean) ===== But actually this should have happened: ===== (defcustom foo-boolean nil "Some foo variable. Some long description that needs to be auto-filled and will span multiple lines." :group 'foo :type 'boolean) ===== -- Kaushal Modi