summaryrefslogtreecommitdiff
path: root/lisp/term
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>1998-04-22 13:45:00 +0000
committerEli Zaretskii <eliz@gnu.org>1998-04-22 13:45:00 +0000
commit8254b6b4852b19683833c89e14abf6e5bda50e98 (patch)
tree6e61f1dbeb365d8fba0d3dd533fdbc237131e4d3 /lisp/term
parent767079a8c6c282e63559f0e4a862546abd04db01 (diff)
downloademacs-8254b6b4852b19683833c89e14abf6e5bda50e98.tar.gz
(x-select-text, x-get-selection-value): Replace win16 with w16.
Diffstat (limited to 'lisp/term')
-rw-r--r--lisp/term/pc-win.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/term/pc-win.el b/lisp/term/pc-win.el
index 5c18716a445..161ab146f1d 100644
--- a/lisp/term/pc-win.el
+++ b/lisp/term/pc-win.el
@@ -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)