aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1998-04-22 13:45:00 +0000
committerEli Zaretskii1998-04-22 13:45:00 +0000
commit8254b6b4852b19683833c89e14abf6e5bda50e98 (patch)
tree6e61f1dbeb365d8fba0d3dd533fdbc237131e4d3
parent767079a8c6c282e63559f0e4a862546abd04db01 (diff)
downloademacs-8254b6b4852b19683833c89e14abf6e5bda50e98.tar.gz
emacs-8254b6b4852b19683833c89e14abf6e5bda50e98.zip
(x-select-text, x-get-selection-value): Replace win16 with w16.
-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.
339The value may be different for frames on different X displays." 339The value may be different for frames on different X displays."
340 x-colors) 340 x-colors)
341 341
342;; From lisp/term/win32-win.el 342;; From lisp/term/w32-win.el
343; 343;
344;;;; Selections and cut buffers 344;;;; Selections and cut buffers
345; 345;
@@ -354,7 +354,7 @@ This is in addition to the primary selection.")
354 354
355(defun x-select-text (text &optional push) 355(defun x-select-text (text &optional push)
356 (if x-select-enable-clipboard 356 (if x-select-enable-clipboard
357 (win16-set-clipboard-data text)) 357 (w16-set-clipboard-data text))
358 (setq x-last-selected-text text)) 358 (setq x-last-selected-text text))
359 359
360;;; Return the value of the current selection. 360;;; Return the value of the current selection.
@@ -365,8 +365,8 @@ This is in addition to the primary selection.")
365 (let (text) 365 (let (text)
366 ;; Don't die if x-get-selection signals an error. 366 ;; Don't die if x-get-selection signals an error.
367 (condition-case c 367 (condition-case c
368 (setq text (win16-get-clipboard-data)) 368 (setq text (w16-get-clipboard-data))
369 (error (message "win16-get-clipboard-data:%s" c))) 369 (error (message "w16-get-clipboard-data:%s" c)))
370 (if (string= text "") (setq text nil)) 370 (if (string= text "") (setq text nil))
371 (cond 371 (cond
372 ((not text) nil) 372 ((not text) nil)