diff options
| author | Gerd Moellmann | 2000-09-08 14:19:31 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-09-08 14:19:31 +0000 |
| commit | 334a2e2a82cb041ec1d0c744e408573aa37d8915 (patch) | |
| tree | 1858f9563f28da234e942748eb73b6da738ea66c /src | |
| parent | ae26e27d7d6b448e3b78f5f92d5869ac9ca8ee0d (diff) | |
| download | emacs-334a2e2a82cb041ec1d0c744e408573aa37d8915.tar.gz emacs-334a2e2a82cb041ec1d0c744e408573aa37d8915.zip | |
(Finternal_merge_in_global_face): Return a Lisp object.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 0049268e033..349f8f9a0f0 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -4583,6 +4583,8 @@ Default face attributes override any local face attributes.") | |||
| 4583 | for (i = 1; i < LFACE_VECTOR_SIZE; ++i) | 4583 | for (i = 1; i < LFACE_VECTOR_SIZE; ++i) |
| 4584 | if (! UNSPECIFIEDP (gvec[i])) | 4584 | if (! UNSPECIFIEDP (gvec[i])) |
| 4585 | lvec[i] = gvec[i]; | 4585 | lvec[i] = gvec[i]; |
| 4586 | |||
| 4587 | return Qnil; | ||
| 4586 | } | 4588 | } |
| 4587 | 4589 | ||
| 4588 | 4590 | ||
| @@ -5671,7 +5673,7 @@ best_matching_font (f, attrs, fonts, nfonts) | |||
| 5671 | { | 5673 | { |
| 5672 | char *font_name; | 5674 | char *font_name; |
| 5673 | struct font_name *best; | 5675 | struct font_name *best; |
| 5674 | int i, pt; | 5676 | int i, pt = 0; |
| 5675 | int specified[4]; | 5677 | int specified[4]; |
| 5676 | int exact_p; | 5678 | int exact_p; |
| 5677 | 5679 | ||