]> git.eshelyaron.com Git - emacs.git/commitdiff
(x-select-text, x-get-selection-value): Replace win16 with w16.
authorEli Zaretskii <eliz@gnu.org>
Wed, 22 Apr 1998 13:45:00 +0000 (13:45 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 22 Apr 1998 13:45:00 +0000 (13:45 +0000)
lisp/term/pc-win.el

index 5c18716a445218739570fb34147f4082bee906a0..161ab146f1d952d24bf5628f696d9b3172ac917f 100644 (file)
@@ -339,7 +339,7 @@ The argument FRAME specifies which frame to try.
 The value may be different for frames on different X displays."
   x-colors)
 
-;; From lisp/term/win32-win.el
+;; From lisp/term/w32-win.el
 ;
 ;;;; Selections and cut buffers
 ;
@@ -354,7 +354,7 @@ This is in addition to the primary selection.")
 
 (defun x-select-text (text &optional push)
   (if x-select-enable-clipboard 
-      (win16-set-clipboard-data text))
+      (w16-set-clipboard-data text))
   (setq x-last-selected-text text))
     
 ;;; Return the value of the current selection.
@@ -365,8 +365,8 @@ This is in addition to the primary selection.")
       (let (text)
        ;; Don't die if x-get-selection signals an error.
        (condition-case c
-           (setq text (win16-get-clipboard-data))
-         (error (message "win16-get-clipboard-data:%s" c)))
+           (setq text (w16-get-clipboard-data))
+         (error (message "w16-get-clipboard-data:%s" c)))
        (if (string= text "") (setq text nil))
        (cond
         ((not text) nil)