적절한 문자열이 있습니다. 원래 문자열의 속성을 유지하면서 더 많은 속성을 추가하기 위해 딥 카피를 만들고 싶습니다. 어떻게하면 쉽게 할 수 있습니까?
예
하나씩 평가 :
(setq test-str-1
#(";; This `is' a test"
0 3 (fontified nil face font-lock-comment-delimiter-face)
3 9 (fontified nil face font-lock-comment-face)
9 11 (fontified nil face (font-lock-constant-face font-lock-comment-face))
11 19 (fontified nil face font-lock-comment-face)))
(setq test-str-2 (concat test-str-1))
(add-face-text-property 0 (length test-str-2) 'foobar t test-str-2)
그리고 결과 :
test-str-2
;; =>
#(";; This `is' a test" 0 3 (fontified nil face (font-lock-comment-delimiter-face foobar))
3 9 (fontified nil face (font-lock-comment-face foobar))
9 11 (fontified nil face (font-lock-constant-face font-lock-comment-face foobar))
11 19 (fontified nil face (font-lock-comment-face foobar)))
test-str-1
;; =>
#(";; This `is' a test" 0 3 (face font-lock-comment-delimiter-face fontified nil)
3 9 (face font-lock-comment-face fontified nil)
9 11 (face (font-lock-constant-face font-lock-comment-face foobar) ; <= foobar is here
fontified nil)
11 19 (face font-lock-comment-face fontified nil))
버그를보고 해 주셔서 감사합니다. 아직 아무도 응답하지 않았습니다. 이 유틸리티 기능 (C로 코딩)을 고정시키는 것이 좋습니다.
—
Drew
add-face-text-property
. 다른 사람들이 해당 목록을 참조 할 때 실패하므로 목록을 파괴적으로 수정해서는 안됩니다.