Mercurial > hg > xemacs-beta
comparison src/dialog-msw.c @ 510:5bdbc721d46a
[xemacs-hg @ 2001-05-06 08:33:35 by ben]
implement printing the selection when it's selected.
force redisplay when set-charset-ccl-program called.
if bytecomp or byte-optimize need recompiling, then load
the .el version of them first, recompile them, and reload
the .elc versions to recompile everything else (so we won't
be waiting until the cows come home).
author | ben |
---|---|
date | Sun, 06 May 2001 08:33:41 +0000 |
parents | 576fb035e263 |
children | 183866b06e0b |
comparison
equal
deleted
inserted
replaced
509:68eb53e4b7e5 | 510:5bdbc721d46a |
---|---|
679 return handle_question_dialog_box (f, keys); | 679 return handle_question_dialog_box (f, keys); |
680 else if (EQ (type, Qprint)) | 680 else if (EQ (type, Qprint)) |
681 return mswindows_handle_print_dialog_box (f, keys); | 681 return mswindows_handle_print_dialog_box (f, keys); |
682 else if (EQ (type, Qpage_setup)) | 682 else if (EQ (type, Qpage_setup)) |
683 return mswindows_handle_page_setup_dialog_box (f, keys); | 683 return mswindows_handle_page_setup_dialog_box (f, keys); |
684 else if (EQ (type, Qprint_setup)) | |
685 return mswindows_handle_print_setup_dialog_box (f, keys); | |
686 else | 684 else |
687 signal_type_error (Qunimplemented, "Dialog box type", type); | 685 signal_type_error (Qunimplemented, "Dialog box type", type); |
688 return Qnil; | 686 return Qnil; |
689 } | 687 } |
690 | 688 |