diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-06-05 10:06:19 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-06-05 10:06:19 +0000 |
commit | 65fddb7472842a1de3be0e8b0fdba849b6555bcc (patch) | |
tree | a5ee57f8093cc80e9df1da6f21200f7ced3d8ec2 /src/xfaces.c | |
parent | 7253ac496df851ff502652ba2b1b94323e575206 (diff) | |
download | emacs-65fddb7472842a1de3be0e8b0fdba849b6555bcc.tar.gz |
(Finternal_lisp_face_p): Signal error for face alias loops.
Diffstat (limited to 'src/xfaces.c')
-rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 07ea34bf736..b30d673241f 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -3935,6 +3935,8 @@ Otherwise check for the existence of a global face. */) { Lisp_Object lface; + face = resolve_face_name (face, 1); + if (!NILP (frame)) { CHECK_LIVE_FRAME (frame); |