1
Come inserisco il testo con una faccia specifica?
Ho una faccia, creata in questo modo: (defface test-face '((t . (:height 2.0))) "A face for testing.") Vorrei inserire del testo con quella faccia. Ma questi modi inseriscono il testo senza la faccia: (insert (propertize "text to insert" 'face 'test-face)) (let ((current-string "text to insert")) (put-text-property 1 (length current-string) 'face …