[Top][All Lists]
[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
- Patch: Syntax and Hard Newlines, Herbert Euler, 2006/11/13
- RE: Patch: Syntax and Hard Newlines, Herbert Euler, 2006/11/13
- Re: Patch: Syntax and Hard Newlines, Stefan Monnier, 2006/11/13
- Re: Patch: Syntax and Hard Newlines, Herbert Euler, 2006/11/13
- Re: Patch: Syntax and Hard Newlines, Stefan Monnier, 2006/11/14
- Re: Patch: Syntax and Hard Newlines, Herbert Euler, 2006/11/14
- Re: Patch: Syntax and Hard Newlines,
Stefan Monnier <=
- Re: Patch: Syntax and Hard Newlines, Herbert Euler, 2006/11/14
- Re: Patch: Syntax and Hard Newlines, Stefan Monnier, 2006/11/14
- Re: Patch: Syntax and Hard Newlines, Herbert Euler, 2006/11/14
- Re: Patch: Syntax and Hard Newlines, Richard Stallman, 2006/11/16
- Re: Patch: Syntax and Hard Newlines, Herbert Euler, 2006/11/30
- Re: Patch: Syntax and Hard Newlines, Stefan Monnier, 2006/11/30
- Re: Patch: Syntax and Hard Newlines, Herbert Euler, 2006/11/14
- Re: Patch: Syntax and Hard Newlines, Miles Bader, 2006/11/15
- Re: Patch: Syntax and Hard Newlines, Stefan Monnier, 2006/11/15
- Re: Patch: Syntax and Hard Newlines, Johan Bockgård, 2006/11/15