]> code.delx.au - gnu-emacs/blobdiff - lisp/select.el
Correct two search limits in c-before-change-check_<>-operators.
[gnu-emacs] / lisp / select.el
index 10c8f0b1efd1b6ebfd323e5378f0ade0b74cf5ad..0260eba4682a901f96c9a2ffa2b32adc43844d51 100644 (file)
@@ -1,6 +1,6 @@
 ;;; select.el --- lisp portion of standard selection support
 
-;; Copyright (C) 1993-1994, 2001-2011  Free Software Foundation, Inc.
+;; Copyright (C) 1993-1994, 2001-2012  Free Software Foundation, Inc.
 
 ;; Maintainer: FSF
 ;; Keywords: internal
@@ -72,7 +72,7 @@ variable is set, it is used for the next communication only.
 After the communication, this variable is set to nil.")
 
 (declare-function x-get-selection-internal "xselect.c"
-                 (selection-symbol target-type &optional time-stamp))
+                 (selection-symbol target-type &optional time-stamp terminal))
 
 ;; Only declared obsolete in 23.3.
 (define-obsolete-function-alias 'x-selection 'x-get-selection "at least 19.34")
@@ -106,7 +106,7 @@ in `selection-converter-alist', which see."
                             ((eq data-type 'STRING)
                              'iso-8859-1)
                             (t
-                             (error "Unknow selection data type: %S" type))))
+                             (error "Unknown selection data type: %S" type))))
            data (if coding (decode-coding-string data coding)
                   (string-to-multibyte data)))
       (setq next-selection-coding-system nil)
@@ -118,9 +118,9 @@ in `selection-converter-alist', which see."
   (x-get-selection-internal 'CLIPBOARD 'STRING))
 
 (declare-function x-own-selection-internal "xselect.c"
-                 (selection-name selection-value))
+                 (selection-name selection-value &optional frame))
 (declare-function x-disown-selection-internal "xselect.c"
-                 (selection &optional time))
+                 (selection &optional time terminal))
 
 (defun x-set-selection (type data)
   "Make an X selection of type TYPE and value DATA.