Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f0da11bd
Commit
f0da11bd
authored
Oct 02, 2014
by
David Raynes
Committed by
Stefan Monnier
Oct 02, 2014
Browse files
* lisp/term/ns-win.el: Add functions to ns frame, not x frame.
Fixes: debbugs:18614
parent
f3c69fb7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/term/ns-win.el
lisp/term/ns-win.el
+4
-4
No files found.
lisp/ChangeLog
View file @
f0da11bd
2014-10-02 David Raynes <rayners@gmail.com> (tiny change)
* term/ns-win.el: Add functions to ns frame, not x frame (bug#18614).
2014-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
* obsolete/lucid.el (read-number): Remove, redundant.
...
...
lisp/term/ns-win.el
View file @
f0da11bd
...
...
@@ -971,10 +971,10 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.")
(
when
gui-select-enable-clipboard
(
ns-set-pasteboard
text
))))
(
gui-method-define
gui-own-selection
x
#'
ns-own-selection-internal
)
(
gui-method-define
gui-disown-selection
x
#'
ns-disown-selection-internal
)
(
gui-method-define
gui-selection-owner-p
x
#'
ns-selection-owner-p
)
(
gui-method-define
gui-get-selection
x
#'
x-get-selection-internal
)
;FIXME:name!
(
gui-method-define
gui-own-selection
ns
#'
ns-own-selection-internal
)
(
gui-method-define
gui-disown-selection
ns
#'
ns-disown-selection-internal
)
(
gui-method-define
gui-selection-owner-p
ns
#'
ns-selection-owner-p
)
(
gui-method-define
gui-get-selection
ns
#'
x-get-selection-internal
)
;FIXME:name!
(
provide
'ns-win
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment