diff options
| author | Eli Zaretskii | 2000-01-02 14:13:48 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-01-02 14:13:48 +0000 |
| commit | 5fe1d13989c271a9cf42d874bc5746913b400134 (patch) | |
| tree | 5a2dd9fd4e3fbc58098a0ee1f6935bcc8e07590a | |
| parent | 37462f4c7ca92040425e1f1e4f13823998445357 (diff) | |
| download | emacs-5fe1d13989c271a9cf42d874bc5746913b400134.tar.gz emacs-5fe1d13989c271a9cf42d874bc5746913b400134.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | src/ChangeLog | 11 |
2 files changed, 25 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4edf9b8b164..5eae42f1c30 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * faces.el (read-face-attribute, defined-colors, color-defined-p): | ||
| 4 | Pass the frame to tty-color-* functions. | ||
| 5 | (display-color-p, frame-set-background-mode): Pass the frame to | ||
| 6 | tty-display-color-p. | ||
| 7 | |||
| 8 | * term/tty-colors.el (tty-defined-color-alist): Renamed from | ||
| 9 | tty-color-alist. | ||
| 10 | (tty-color-alist, tty-modify-color-alist): New functions. | ||
| 11 | (tty-color-define, tty-color-clear, tty-color-approximate) | ||
| 12 | (tty-color-translate, tty-color-by-index, tty-color-desc): Accept | ||
| 13 | an optional parameter FRAME. | ||
| 14 | |||
| 1 | 2000-01-01 Gerd Moellmann <gerd@gnu.org> | 15 | 2000-01-01 Gerd Moellmann <gerd@gnu.org> |
| 2 | 16 | ||
| 3 | * image.el (create-image, defimage): Don't assume image data is a | 17 | * image.el (create-image, defimage): Don't assume image data is a |
diff --git a/src/ChangeLog b/src/ChangeLog index 317d5c7ec9b..8313360c52c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,16 @@ | |||
| 1 | 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> | 1 | 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 2 | ||
| 3 | * xfaces.c (tty_defined_color): Pass frame to tty-color-desc. The | ||
| 4 | list of colors renamed to tty-defined-color-alist. | ||
| 5 | (tty_color_name): Pass the frame to tty-color-by-index. | ||
| 6 | (realize_tty_face): tty-color-alist is now a function which | ||
| 7 | accepts the frame as argument. | ||
| 8 | |||
| 9 | * term.c (Ftty_display_color_p): Accept an optional argument | ||
| 10 | FRAME. | ||
| 11 | |||
| 12 | 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 13 | |||
| 3 | * term.c (insert_glyphs): Pass glyph, not &glyph, to | 14 | * term.c (insert_glyphs): Pass glyph, not &glyph, to |
| 4 | encode_terminal_code. | 15 | encode_terminal_code. |
| 5 | 16 | ||