[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [SOLVED]
From: |
Uwe Brauer |
Subject: |
Re: [SOLVED] |
Date: |
Mon, 25 Jul 2022 07:49:15 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) |
>>> "UB" == Uwe Brauer <oub@mat.ucm.es> writes:
>>> "MH" == Michael Heerdegen <michael_heerdegen@web.de> writes:
>> Uwe Brauer <oub@mat.ucm.es> writes:
>>> Thanks, that did not occur to me. I tried to advice since a while
>>> since it makes debugging difficult.
>> Not much, IME.
>>> (defadvice copy-to-register (before removeproperties activate)
>>> "Remove all text properties before setting the property"
>>> (let ((inhibit-read-only t))
>>> (set-text-properties (point-min) (point-max) nil)))
>> It would be better and cleaner to change the value that is saved in the
>> register instead of modifying the buffer.
I just realized that I did not read your message carefully enough.
It seems you suggest
(defadvice copy-to-register (before removeproperties activate)
"Remove all text properties before setting the property"
(let ((inhibit-read-only t))
(set-text-properties (region-beginning) (region-end) nil)))
Which is what I intended but copied the code incorrectly.
--
I strongly condemn Putin's war of aggression against the Ukraine.
I support to deliver weapons to Ukraine's military.
I support the ban of Russia from SWIFT.
I support the EU membership of the Ukraine.
smime.p7s
Description: S/MIME cryptographic signature
- problems with better-registers: turn-off-all-minor modes or remove all text-properties, Uwe Brauer, 2022/07/23
- Re: problems with better-registers: turn-off-all-minor modes or remove all text-properties, Thorsten Bonow, 2022/07/23
- Re: problems with better-registers: turn-off-all-minor modes or remove all text-properties, Michael Heerdegen, 2022/07/23
- Re: problems with better-registers: turn-off-all-minor modes or remove all text-properties, Michael Heerdegen, 2022/07/24
- Re: problems with better-registers: turn-off-all-minor modes or remove all text-properties, Uwe Brauer, 2022/07/24
- [SOLVED] (was: problems with better-registers: turn-off-all-minor modes or remove all text-properties), Uwe Brauer, 2022/07/24
- Re: [SOLVED], Michael Heerdegen, 2022/07/24
- Re: [SOLVED], Uwe Brauer, 2022/07/25
- Re: [SOLVED],
Uwe Brauer <=
- Re: [SOLVED], Stefan Monnier, 2022/07/25
- Re: [SOLVED], Uwe Brauer, 2022/07/25
- Re: [SOLVED], Michael Heerdegen, 2022/07/25
- Re: [SOLVED], Uwe Brauer, 2022/07/26
- Re: [SOLVED], Thorsten Bonow, 2022/07/26
- Re: [SOLVED], Uwe Brauer, 2022/07/26
- Re: [SOLVED], Yuri Khan, 2022/07/26
- Re: [SOLVED], Michael Heerdegen, 2022/07/26
- Re: [SOLVED], Uwe Brauer, 2022/07/27
- Re: [SOLVED], Yuri Khan, 2022/07/27