emacs-devel
[Top][All Lists]
Advanced

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

Re: Yanking text properties


From: Per Abrahamsen
Subject: Re: Yanking text properties
Date: Fri, 02 Nov 2001 10:11:23 +0100
User-agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/21.1 (i686-pc-linux-gnu)

Would 

    (make-local-variable 'inhibit-field-text-motion)
    (setq inhibit-field-text-motion t) ; Ignore the field property.
    (make-local-variable 'inhibit-read-only)
    (setq inhibit-read-only t)         ; Ignore the read-only property.
    (make-local-variable 'inhibit-point-motion-hooks)
    (setq inhibit-point-motion-hooks t); Ignore the intangible property.

be an acceptable partial[1] workaround?  Or is there generic
(non-mode-specific) editing code that use these?

We could also use 'after-change-functions' to strip the properties.

Footnotes: 
[1]  I couldn't find a way to default the invisible and mouse-face
properties. 



reply via email to

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