[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#30786: Save text properties in desktop
From: |
Noam Postavsky |
Subject: |
bug#30786: Save text properties in desktop |
Date: |
Mon, 12 Mar 2018 21:16:40 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.0.90 (gnu/linux) |
Juri Linkov <juri@linkov.net> writes:
> Why does desktop.el not save text properties?
> Maybe for some historical reasons?
> This is required for bug#22479.
> I can't find a problem while trying this patch:
> - (let ((copy (copy-sequence value)))
> - (set-text-properties 0 (length copy) nil copy)
> - ;; Get rid of text properties because we cannot read them.
I guess this comment is relevant, you can easily have non-readable
property values, e.g.: (put-text-property 1 2 'foo (point-marker)).
Maybe solving Bug#24982 would help?