aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2019-06-27 15:01:01 -0700
committerPaul Eggert2019-06-27 15:39:34 -0700
commit2212ab5035490a681116744387ba6c1467ec9cfe (patch)
tree76ec8f520b5fef1cc62c942ff161d8654ec36270 /src
parent01d6349b17316e184b890d056c575815edf11e26 (diff)
downloademacs-2212ab5035490a681116744387ba6c1467ec9cfe.tar.gz
emacs-2212ab5035490a681116744387ba6c1467ec9cfe.zip
* src/xfaces.c (resolve_face_name): Simplify.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 012cc96470d..d9e66eaf2d1 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -1799,7 +1799,7 @@ resolve_face_name (Lisp_Object face_name, bool signal_p)
1799 if (EQ (hare, tortoise)) 1799 if (EQ (hare, tortoise))
1800 { 1800 {
1801 if (signal_p) 1801 if (signal_p)
1802 xsignal1 (Qcircular_list, orig_face); 1802 circular_list (orig_face);
1803 return Qdefault; 1803 return Qdefault;
1804 } 1804 }
1805 } 1805 }