Skip to content

Commit

Permalink
Fix face inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Aug 12, 2012
1 parent bc5fd8f commit b2d83ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ac-slime.el
Expand Up @@ -36,13 +36,13 @@

;;;###autoload
(defface ac-slime-menu-face
'((t (:inherit 'ac-candidate-face)))
'((t (:inherit ac-candidate-face)))
"Face for slime candidate menu."
:group 'auto-complete)

;;;###autoload
(defface ac-slime-selection-face
'((t (:inherit 'ac-selection-face)))
'((t (:inherit ac-selection-face)))
"Face for the slime selected candidate."
:group 'auto-complete)

Expand Down

0 comments on commit b2d83ad

Please sign in to comment.