]> git.eshelyaron.com Git - emacs.git/commitdiff
term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
authorEli Zaretskii <eliz@gnu.org>
Fri, 26 Nov 2010 18:38:40 +0000 (20:38 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 26 Nov 2010 18:38:40 +0000 (20:38 +0200)
lisp/ChangeLog
lisp/term/pc-win.el

index 9d5394fed6c4a046cdb2a5fd636448aaf41a7779..0e9bd5bc718ef479fe0294389328d9cad5b77d16 100644 (file)
@@ -1,3 +1,7 @@
+2010-11-26  Eli Zaretskii  <eliz@gnu.org>
+
+       * term/pc-win.el (x-get-selection-internal): Emulation for MS-DOS.
+
 2010-11-26  Glenn Morris  <rgm@gnu.org>
 
        * calendar/diary-lib.el (diary-outlook-format-1): New function, so that
index 767c291c754ae09605634c768c6e6dc8dadf6664..c13862a8da0e82cabee4de86a5d504e26231bf5f 100644 (file)
@@ -288,6 +288,16 @@ Disowning it means there is no such selection."
   (if (x-selection-owner-p selection)
       t))
 
+;; x-get-selection-internal is used in select.el
+(defun x-get-selection-internal (selection type &optional time_stamp)
+  "Return text selected from some X window.
+SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
+\(Those are literal upper-case symbol names, since that's what X expects.)
+TYPE is the type of data desired, typically `STRING'.
+TIME_STAMP is the time to use in the XConvertSelection call for foreign
+selections.  If omitted, defaults to the time for the last event."
+  (x-get-selection-value))
+
 ;; From src/fontset.c:
 (fset 'query-fontset 'ignore)