[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107251: Update some function declara
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107251: Update some function declarations |
Date: |
Sat, 11 Feb 2012 15:06:46 -0800 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107251
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Sat 2012-02-11 15:06:46 -0800
message:
Update some function declarations
* lisp/select.el (x-get-selection-internal, x-own-selection-internal)
(x-disown-selection-internal):
* lisp/x-dnd.el (x-get-selection-internal): Update declarations.
modified:
lisp/ChangeLog
lisp/select.el
lisp/x-dnd.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-02-11 23:02:29 +0000
+++ b/lisp/ChangeLog 2012-02-11 23:06:46 +0000
@@ -1,5 +1,9 @@
2012-02-11 Glenn Morris <address@hidden>
+ * select.el (x-get-selection-internal, x-own-selection-internal)
+ (x-disown-selection-internal):
+ * x-dnd.el (x-get-selection-internal): Update declarations.
+
* vc/log-view.el (vc-diff-internal): Remove unneeded declaration.
* window.el (window-sides-slots):
=== modified file 'lisp/select.el'
--- a/lisp/select.el 2012-01-19 07:21:25 +0000
+++ b/lisp/select.el 2012-02-11 23:06:46 +0000
@@ -72,7 +72,7 @@
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")
@@ -118,9 +118,9 @@
(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.
=== modified file 'lisp/x-dnd.el'
--- a/lisp/x-dnd.el 2012-01-19 07:21:25 +0000
+++ b/lisp/x-dnd.el 2012-02-11 23:06:46 +0000
@@ -431,7 +431,7 @@
(declare-function x-send-client-message "xselect.c"
(display dest from message-type format values))
(declare-function x-get-selection-internal "xselect.c"
- (selection-symbol target-type &optional time-stamp))
+ (selection-symbol target-type &optional time-stamp terminal))
(defun x-dnd-version-from-flags (flags)
"Return the version byte from the 32 bit FLAGS in an XDndEnter message"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107251: Update some function declarations,
Glenn Morris <=