diff options
Diffstat (limited to 'lisp/term/pc-win.el')
-rw-r--r-- | lisp/term/pc-win.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/term/pc-win.el b/lisp/term/pc-win.el index 1860b9370d5..e3bb01eded9 100644 --- a/lisp/term/pc-win.el +++ b/lisp/term/pc-win.el @@ -29,6 +29,10 @@ (load "term/internal" nil t) +(declare-function msdos-remember-default-colors "msdos.c") +(declare-function w16-set-clipboard-data "w16select.c") +(declare-function w16-get-clipboard-data "w16select.c") + ;;; This is copied from etc/rgb.txt, except that some values were changed ;;; a bit to make them consistent with DOS console colors, and the RGB ;;; values were scaled up to 16 bits, as `tty-define-color' requires. @@ -130,7 +134,7 @@ (unless success (delete-frame frame))) frame)) -(setq frame-creation-function 'make-msdos-frame) +(add-to-list 'frame-creation-function-alist '(pc . make-msdos-frame)) ;; --------------------------------------------------------------------------- ;; More or less useful imitations of certain X-functions. A lot of the |