Pytania otagowane jako insert

1
Jak wstawić tekst z określoną twarzą?
Mam twarz stworzoną w ten sposób: (defface test-face '((t . (:height 2.0))) "A face for testing.") Chciałbym wstawić tekst z tą twarzą. Ale te sposoby wstawiają tekst bez twarzy: (insert (propertize "text to insert" 'face 'test-face)) (let ((current-string "text to insert")) (put-text-property 1 (length current-string) 'face 'test-face) (insert current-string)) Nawet …
15 faces  insert 
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.