diff options
author | yonirabkin <yonirabkin> | 2005-09-18 11:13:00 +0000 |
---|---|---|
committer | yonirabkin <mwolson@gnu.org> | 2005-09-18 11:13:00 +0000 |
commit | 1c038156cd13b5d0ce3bac875d8782803ab903f6 (patch) | |
tree | bbb80a2d22b000fce9b8a0990b8b00ed6832c6d1 | |
parent | da660a77c5a379b7453bba9ea277ef8cb6bc4f6e (diff) |
clean-up pseudo font-locking
darcs-hash:20050918111356-be80e-b110448449043fdb7cc75d858c64ef314a7d52ee.gz
-rw-r--r-- | emms-playlist-mode.el | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/emms-playlist-mode.el b/emms-playlist-mode.el index 8f6b4f1..b9721a0 100644 --- a/emms-playlist-mode.el +++ b/emms-playlist-mode.el @@ -17,8 +17,6 @@ ;;; playlist buffers. ;;; ;;; (2) Arbitrary comment entry with color overlays. -;;; -;;; (3) Font-locking for unselected tracks via overlays. ;;; Code: @@ -177,13 +175,6 @@ FACE should be a... face." (let ((o (make-overlay start end))) (emms-playlist-mode-overlay-face o face priority))) -(defun emms-playlist-mode-overlay-at (face) - "Place an overlay the current line using FACE. - -FACE should be a valid face." - (let ((o (make-overlay (point-at-bol) (point-at-eol)))) - (overlay-put o 'face face))) - (defun emms-playlist-mode-overlay-unselected () ;; point-mix/max because -insert-source narrows the world (emms-playlist-mode-overlay-track (point-min) |