emacs-devel
[Top][All Lists]
Advanced

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

Re: Patch: Syntax and Hard Newlines


From: Stefan Monnier
Subject: Re: Patch: Syntax and Hard Newlines
Date: Tue, 14 Nov 2006 10:00:58 -0500
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.90 (gnu/linux)

>> Another way to fix it, local to longlines.el is to add a syntax-table
>> property to soft-newlines so as to prevent them from being treated like an
>> end-of-comment.

> I'd ever added

>      (progn (insert-before-markers ?\n)
>                (backward-char 1)
> +               (add-text-properties (point)
> +                                            (point)
> +                                            '(syntax-table (11)))
>                (delete-char -1)

> to `longlines-wrap-line', but it did not work.

No wonder: you place the property on 0 chars.
Can you try with a second arg of (+ 1 (point))?


        Stefan




reply via email to

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