diff options
| author | Paul Eggert | 2015-03-03 14:37:43 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-03-03 14:37:43 -0800 |
| commit | e2ae1c5a40e2802fcd9f5ee26b4906be97c8b878 (patch) | |
| tree | b2d56b00e2ae8ba90167ede434561d4a3b1f273d /src | |
| parent | d8462361f2d087d6f7c745305c61a266843ee19c (diff) | |
| parent | 4b0b27d0018f040bda6a2ec885fa54c666d9c083 (diff) | |
| download | emacs-e2ae1c5a40e2802fcd9f5ee26b4906be97c8b878.tar.gz emacs-e2ae1c5a40e2802fcd9f5ee26b4906be97c8b878.zip | |
Merge from origin/emacs-24
4b0b27d Fix invocation of commands whose file name includes extension
87fc99f Better support for the case of typing RET on the prompt in comint.
a7b1c2f Don't lose frame's background color when setting foreground
20c817d Fix handling of frame color parameters in TTY sessions
eca7da1 Complete the remaining documentation updates for 24.5
Conflicts:
doc/lispref/ChangeLog
etc/NEWS
lisp/ChangeLog
nt/ChangeLog
src/ChangeLog
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 |