aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-12-06 21:23:20 +0000
committerGerd Moellmann1999-12-06 21:23:20 +0000
commit397e4fae84e4f568b7280fbc5c39cd04f1f67653 (patch)
treea8207b7bd3e0311eac19190243d67776b262180c
parent3d973f71150d7afd6fda5e1d9f07410ead0022de (diff)
downloademacs-397e4fae84e4f568b7280fbc5c39cd04f1f67653.tar.gz
emacs-397e4fae84e4f568b7280fbc5c39cd04f1f67653.zip
(set_lface_from_font_name): Fix incomplete merge.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xfaces.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6f0eba3af48..091604204d8 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
11999-12-06 Gerd Moellmann <gerd@gnu.org>
2
3 * xfaces.c (set_lface_from_font_name): Fix incomplete merge.
4
11999-12-04 Hrvoje Niksic <hniksic@iskon.hr> 51999-12-04 Hrvoje Niksic <hniksic@iskon.hr>
2 6
3 * lread.c (Fintern_soft): Accept a symbol argument. 7 * lread.c (Fintern_soft): Accept a symbol argument.
diff --git a/src/xfaces.c b/src/xfaces.c
index 05a0d2dfe37..5fb16e5509d 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -2769,7 +2769,7 @@ lface_fully_specified_p (attrs)
2769 for split_font_name, see the comment there. */ 2769 for split_font_name, see the comment there. */
2770 2770
2771static int 2771static int
2772set_lface_from_font_name (f, lface, font_name, force_p) 2772set_lface_from_font_name (f, lface, font_name, force_p, may_fail_p)
2773 struct frame *f; 2773 struct frame *f;
2774 Lisp_Object lface; 2774 Lisp_Object lface;
2775 char *font_name; 2775 char *font_name;
@@ -2809,6 +2809,7 @@ set_lface_from_font_name (f, lface, font_name, force_p)
2809 } 2809 }
2810 UNBLOCK_INPUT; 2810 UNBLOCK_INPUT;
2811 } 2811 }
2812 }
2812 2813
2813 /* If FONT_NAME is completely bogus try to use something reasonable 2814 /* If FONT_NAME is completely bogus try to use something reasonable
2814 if this function must succeed. Otherwise, give up. */ 2815 if this function must succeed. Otherwise, give up. */