emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#18614: closed (Fix gui selection on OSX)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#18614: closed (Fix gui selection on OSX)
Date: Fri, 03 Oct 2014 00:17:02 +0000

Your message dated Thu, 02 Oct 2014 20:16:00 -0400
with message-id <address@hidden>
and subject line Re: bug#18614: Fix gui selection on OSX
has caused the debbugs.gnu.org bug report #18614,
regarding Fix gui selection on OSX
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
18614: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=18614
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Fix gui selection on OSX Date: Thu, 2 Oct 2014 16:04:34 -0400
To reproduce: open ./nextstep/Emacs.app/Contents/MacOS/Emacs -q, hit
cmd-a to select all.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ce62957..98a299b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,6 @@
+2014-10-02  David Raynes  <address@hidden>
+       * term/ns-win.el: Add functions to ns frame, not x frame.
+
 2014-10-02  Stefan Monnier  <address@hidden>

        * obsolete/lucid.el (read-number): Remove, redundant.
diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el
index 5889baf..b1d3a00 100644
--- a/lisp/term/ns-win.el
+++ b/lisp/term/ns-win.el
@@ -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)



--- End Message ---
--- Begin Message --- Subject: Re: bug#18614: Fix gui selection on OSX Date: Thu, 02 Oct 2014 20:16:00 -0400 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux)
> -(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!
 
Oops, thanks, installed,


        Stefan


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]