emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#13180: closed (24.2.90; fill-paragraph in Makefile


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#13180: closed (24.2.90; fill-paragraph in Makefiles)
Date: Wed, 30 Jan 2013 20:44:02 +0000

Your message dated Wed, 30 Jan 2013 15:41:59 -0500
with message-id <address@hidden>
and subject line Re: bug#13179: 24.2.90; fill-paragraph
has caused the debbugs.gnu.org bug report #13179,
regarding 24.2.90; fill-paragraph in Makefiles
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
13179: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13179
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Re: 24.2.90; fill-paragraph Date: Fri, 14 Dec 2012 11:21:20 +0700 User-agent: Mutt/1.5.21 (2010-09-15)
On Fri, Dec 14, 2012 at 11:03:34AM +0700, Thomas Christensen wrote:
> 
> It will not look like this (notice the 5 space indent):

"not" was meant to be "now"



--- End Message ---
--- Begin Message --- Subject: Re: bug#13179: 24.2.90; fill-paragraph Date: Wed, 30 Jan 2013 15:41:59 -0500 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)
> The expected behavior would be to keep looking like the first case with
> 4 space indentation.

Indeed.

> I have bisected the problem (with git) to this commit:
> Author: Stefan Monnier <address@hidden>
> Date:   Wed Sep 8 18:21:23 2010 +0200
>     Misc cleanups and simplifications.

The problem was kind of nasty (disappears when you step through the
code, because it gets fixed by font-lock), but even now that
I understand clearly what was the problem, I don't see how it is related
to the above changes (maybe by setting parse-sexp-lookup-properties).

In any case, I've installed the patch below which should fix the problem
(maybe it should be fixed more generally in fill.el or in
back-to-indentation).


        Stefan


--- lisp/progmodes/make-mode.el 2013-01-01 09:11:05 +0000
+++ lisp/progmodes/make-mode.el 2013-01-30 20:38:09 +0000
@@ -1307,6 +1307,12 @@
        (save-restriction
          (narrow-to-region beginning end)
          (makefile-backslash-region (point-min) (point-max) t)
+         ;; Backslashed newlines are marked as puncutations, so when
+         ;; fill-delete-newlines turns the LF into SPC, we end up with spaces
+         ;; which back-to-indentation (called via fill-newline ->
+         ;; fill-indent-to-left-margin -> indent-line-to) thinks are real code
+         ;; (bug#13179).
+         (remove-text-properties (point-min) (point-max) '(syntax-table))
          (let ((fill-paragraph-function nil)
                 ;; Adjust fill-column to allow space for the backslash.
                 (fill-column (- fill-column 1)))



--- End Message ---

reply via email to

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