1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-12 09:28:24 +00:00

*** empty log message ***

This commit is contained in:
Gerd Moellmann 2000-09-07 11:41:18 +00:00
parent 7542976865
commit ab0ee409fd
2 changed files with 20 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2000-09-07 Gerd Moellmann <gerd@gnu.org>
* faces.el (frame-set-background-mode): Use frame-parameter
instead of frame-parameters.
* frame.el (filtered-frame-list): Reduce consing.
(frames-on-display-list): Call frame-parameter instead of
frame-parameters.
2000-09-07 Kenichi Handa <handa@etl.go.jp>
* language/devan-util.el (devanagari-to-indian-region): In the

View File

@ -1,6 +1,16 @@
2000-09-07 Gerd Moellmann <gerd@gnu.org>
* frame.c (Fframe_parameter): Handle `name' specially.
* xfaces.c (Vparam_value_alist): New variable.
(syms_of_xfaces): Initialize it.
(Finternal_set_lisp_face_attribute): Avoid more consing.
* frame.c (Fframe_parameter): Handle `name' and `background-mode'
specially.
(Fframe_parameter) [HAVE_X_WINDOWS]: Handle `display' specially.
(Qbackground_mode): New variable.
(syms_of_frame_1): Initialize Qbackground_mode.
* lisp.h (Qdisplay): Declare extern.
* xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is 0,
change face on all frames, and change the default for new frames.