diff options
author | Kenichi Handa <handa@m17n.org> | 2000-08-18 05:05:39 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2000-08-18 05:05:39 +0000 |
commit | 851ab85e39acf787dd13f756336b9cab151e2c51 (patch) | |
tree | 1a1bde1d979f7ed887f1dd61016f1d26441beb23 /src/fontset.c | |
parent | dd34a73507c182bbbd89e07ebd1bfe66d4a1f8d8 (diff) | |
download | emacs-851ab85e39acf787dd13f756336b9cab151e2c51.tar.gz |
(Finternal_char_font): Search only the selected frame for a window of
the current buffer.
Diffstat (limited to 'src/fontset.c')
-rw-r--r-- | src/fontset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c index f0be7f7834f..30450ea8368 100644 --- a/src/fontset.c +++ b/src/fontset.c @@ -1158,7 +1158,7 @@ DEFUN ("internal-char-font", Finternal_char_font, Sinternal_char_font, 1, 1, 0, c = FETCH_CHAR (pos_byte); if (! CHAR_VALID_P (c, 0)) return Qnil; - window = Fget_buffer_window (Fcurrent_buffer (), Qt); + window = Fget_buffer_window (Fcurrent_buffer (), Qnil); if (NILP (window)) return Qnil; w = XWINDOW (window); |