diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/xfaces.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5bfb1809139..2609ed7dd01 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,12 @@ | |||
| 1 | 2015-03-03 Eli Zaretskii <eliz@gnu.org> | 1 | 2015-03-03 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * xfaces.c (map_tty_color): Use assoc_no_quit instead of | ||
| 4 | assq_no_quit to fetch color definition by its string name. | ||
| 5 | (Bug#19802) | ||
| 6 | |||
| 7 | 2015-03-03 Eli Zaretskii <eliz@gnu.org> | ||
| 8 | 2015-03-03 Eli Zaretskii <eliz@gnu.org> | ||
| 9 | |||
| 3 | * xdisp.c (move_it_in_display_line_to): Handle the case where the | 10 | * xdisp.c (move_it_in_display_line_to): Handle the case where the |
| 4 | last character of a screen line is whitespace, and we are under | 11 | last character of a screen line is whitespace, and we are under |
| 5 | word-wrap with overflow-newline-into-fringe turned on. | 12 | word-wrap with overflow-newline-into-fringe turned on. |
diff --git a/src/xfaces.c b/src/xfaces.c index fcfdbc0ee4f..b2697220bce 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -5700,7 +5700,7 @@ map_tty_color (struct frame *f, struct face *face, | |||
| 5700 | if (STRINGP (color) | 5700 | if (STRINGP (color) |
| 5701 | && SCHARS (color) | 5701 | && SCHARS (color) |
| 5702 | && CONSP (Vtty_defined_color_alist) | 5702 | && CONSP (Vtty_defined_color_alist) |
| 5703 | && (def = assq_no_quit (color, call1 (Qtty_color_alist, frame)), | 5703 | && (def = assoc_no_quit (color, call1 (Qtty_color_alist, frame)), |
| 5704 | CONSP (def))) | 5704 | CONSP (def))) |
| 5705 | { | 5705 | { |
| 5706 | /* Associations in tty-defined-color-alist are of the form | 5706 | /* Associations in tty-defined-color-alist are of the form |