diff options
| author | Glenn Morris | 2015-05-10 23:34:45 -0700 |
|---|---|---|
| committer | Glenn Morris | 2015-05-10 23:34:45 -0700 |
| commit | 3c5cc185df0d4143883d9bef921c2e5ffb59586f (patch) | |
| tree | dfdd383578cdcf15d42e2ea1491213cd8c61a217 | |
| parent | a0dd752f3902129870b8b4cc4b4f89368c7cfb66 (diff) | |
| download | emacs-3c5cc185df0d4143883d9bef921c2e5ffb59586f.tar.gz emacs-3c5cc185df0d4143883d9bef921c2e5ffb59586f.zip | |
* lisp/term/x-win.el: Quieten --without-x compilation.
(x-own-selection-internal, x-disown-selection-internal)
(x-selection-owner-p, x-selection-exists-p, x-get-selection-internal):
Declare.
| -rw-r--r-- | lisp/term/x-win.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index 11fe93f88ba..f929288d04e 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el | |||
| @@ -1323,6 +1323,17 @@ This returns an error if any Emacs frames are X frames." | |||
| 1323 | (x-apply-session-resources) | 1323 | (x-apply-session-resources) |
| 1324 | (setq x-initialized t)) | 1324 | (setq x-initialized t)) |
| 1325 | 1325 | ||
| 1326 | (declare-function x-own-selection-internal "xselect.c" | ||
| 1327 | (selection value &optional frame)) | ||
| 1328 | (declare-function x-disown-selection-internal "xselect.c" | ||
| 1329 | (selection &optional time-object terminal)) | ||
| 1330 | (declare-function x-selection-owner-p "xselect.c" | ||
| 1331 | (&optional selection terminal)) | ||
| 1332 | (declare-function x-selection-exists-p "xselect.c" | ||
| 1333 | (&optional selection terminal)) | ||
| 1334 | (declare-function x-get-selection-internal "xselect.c" | ||
| 1335 | (selection-symbol target-type &optional time-stamp terminal)) | ||
| 1336 | |||
| 1326 | (add-to-list 'display-format-alist '("\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'" . x)) | 1337 | (add-to-list 'display-format-alist '("\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'" . x)) |
| 1327 | (gui-method-define handle-args-function x #'x-handle-args) | 1338 | (gui-method-define handle-args-function x #'x-handle-args) |
| 1328 | (gui-method-define frame-creation-function x #'x-create-frame-with-faces) | 1339 | (gui-method-define frame-creation-function x #'x-create-frame-with-faces) |