diff options
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/xfaces.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 8209f47f6f8..1cea67b8689 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | * xfaces.c (check_lface_attrs, realize_default_face): Add | 3 | * xfaces.c (check_lface_attrs, realize_default_face): Add |
| 4 | LFACE_DISTANT_FOREGROUND_INDEX (Bug#15788). | 4 | LFACE_DISTANT_FOREGROUND_INDEX (Bug#15788). |
| 5 | (realize_default_face): Set DISTANT_FOREGROUND to unspecified_fg. | ||
| 5 | 6 | ||
| 6 | 2013-11-02 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2013-11-02 Paul Eggert <eggert@cs.ucla.edu> |
| 7 | 8 | ||
diff --git a/src/xfaces.c b/src/xfaces.c index 717690a42e5..7b88659e11d 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -5356,7 +5356,7 @@ realize_default_face (struct frame *f) | |||
| 5356 | } | 5356 | } |
| 5357 | 5357 | ||
| 5358 | if (UNSPECIFIEDP (LFACE_DISTANT_FOREGROUND (lface))) | 5358 | if (UNSPECIFIEDP (LFACE_DISTANT_FOREGROUND (lface))) |
| 5359 | ASET (lface, LFACE_DISTANT_FOREGROUND_INDEX, Qnil); | 5359 | ASET (lface, LFACE_DISTANT_FOREGROUND_INDEX, build_string (unspecified_fg)); |
| 5360 | 5360 | ||
| 5361 | if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) | 5361 | if (UNSPECIFIEDP (LFACE_BACKGROUND (lface))) |
| 5362 | { | 5362 | { |