]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/xfaces.c (resolve_face_name): Simplify.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 27 Jun 2019 22:01:01 +0000 (15:01 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 27 Jun 2019 22:39:34 +0000 (15:39 -0700)
src/xfaces.c

index 012cc96470d427e3288b18e0d0b4aa3da12bd3eb..d9e66eaf2d181f3ecb114dd38675e7eb7c7d1294 100644 (file)
@@ -1799,7 +1799,7 @@ resolve_face_name (Lisp_Object face_name, bool signal_p)
       if (EQ (hare, tortoise))
        {
          if (signal_p)
-           xsignal1 (Qcircular_list, orig_face);
+           circular_list (orig_face);
          return Qdefault;
        }
     }