diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2004-11-07 09:13:26 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2004-11-07 09:13:26 +0000 |
commit | 238a44a8657ff8cf0feee84619262255b354c55d (patch) | |
tree | 44f6518f9b376d8267b62eb1c2bc29b1f574be31 /src/msdos.c | |
parent | 21acf124651cdcfd76317649236a25254f57de1b (diff) | |
download | emacs-238a44a8657ff8cf0feee84619262255b354c55d.tar.gz |
* dosfns.c (Fdos_memget, Fdos_memput): Use integer variable offs in
comparisons with integers instead of Lisp_Object address.
(Fmsdos_set_keyboard): Declare argument allkeys.
* msdos.c (IT_set_frame_parameters): Use EQ, not ==, for Lisp_Object:s.
* dired.c: extern declare Fmsdos_downcase_filename on MSDOS to avoid
int/Lisp_Object mixup.
* fileio.c: Ditto.
Diffstat (limited to 'src/msdos.c')
-rw-r--r-- | src/msdos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msdos.c b/src/msdos.c index e0f4527e5ae..d75ea18ea97 100644 --- a/src/msdos.c +++ b/src/msdos.c @@ -2320,7 +2320,7 @@ IT_set_frame_parameters (f, alist) /* If we are creating a new frame, begin with the original screen colors used for the initial frame. */ - if (alist == Vdefault_frame_alist + if (EQ (alist, Vdefault_frame_alist) && initial_screen_colors[0] != -1 && initial_screen_colors[1] != -1) { FRAME_FOREGROUND_PIXEL (f) = initial_screen_colors[0]; |