legacy-dotfiles/.emacs.d/slash_functions.el
2010-06-30 20:59:12 +02:00

5 lines
No EOL
231 B
EmacsLisp

(defun what-face (pos)
(interactive "d")
(let ((face (or (get-char-property (point) 'read-face-name)
(get-char-property (point) 'face))))
(if face (message "Face: %s" face) (message "No face at %d" pos))))