]> git.eshelyaron.com Git - emacs.git/commitdiff
(resolve_face_name): Use Fget instead of Fsafe_get.
authorKim F. Storm <storm@cua.dk>
Thu, 21 Apr 2005 23:45:40 +0000 (23:45 +0000)
committerKim F. Storm <storm@cua.dk>
Thu, 21 Apr 2005 23:45:40 +0000 (23:45 +0000)
src/xfaces.c

index d8ae7c2af19844908e966c2983a83ae5e3335052..5c865be3000898ba451ff511cccd1a7099b379ef 100644 (file)
@@ -3218,7 +3218,7 @@ resolve_face_name (face_name)
 
   while (SYMBOLP (face_name))
     {
-      aliased = Fsafe_get (face_name, Qface_alias);
+      aliased = Fget (face_name, Qface_alias);
       if (NILP (aliased))
        break;
       if (--alias_loop_max == 0)