]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/simple.el (newline-and-indent): Do autofill.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 18 Mar 2014 20:49:24 +0000 (16:49 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 18 Mar 2014 20:49:24 +0000 (16:49 -0400)
Fixes: debbugs:17031
lisp/ChangeLog
lisp/simple.el

index 9bf92ae1b58829ce42d8f3f95e5e34e8a95d26ab..70b557ad36b0517f5bb5438dad46fd142348e945 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * simple.el (newline-and-indent): Do autofill (bug#17031).
+
 2014-03-18  Dmitry Gutov  <dgutov@yandex.ru>
 
        * newcomment.el (comment-normalize-vars): Only add escaping check
index d84708217b49c64874c8125533edc3aeac38c02d..09a9d45c43ac1c7272b221b692faa5063e15c82c 100644 (file)
@@ -611,7 +611,7 @@ In some text modes, where TAB inserts a tab, this command indents to the
 column specified by the function `current-left-margin'."
   (interactive "*")
   (delete-horizontal-space t)
-  (newline 1 t)
+  (newline nil t)
   (indent-according-to-mode))
 
 (defun reindent-then-newline-and-indent ()