emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Breaking change with auto-filling in Org mode with recent commit


From: Kaushal Modi
Subject: Re: Breaking change with auto-filling in Org mode with recent commit
Date: Thu, 10 Aug 2017 21:34:22 +0000

On Thu, Aug 10, 2017 at 1:54 PM Kaushal Modi <address@hidden> 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]