emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/src ChangeLog nsselect.m


From: David Reitter
Subject: [Emacs-diffs] emacs/src ChangeLog nsselect.m
Date: Fri, 05 Jun 2009 14:08:18 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     David Reitter <davidswelt>      09/06/05 14:08:18

Modified files:
        src            : ChangeLog nsselect.m 

Log message:
        nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p,
        Fx_selection_owner_p): rename from Fns_own_selection_internal,
        Fns_selection_exists_p, Fns_selection_owner_p.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7557&r2=1.7558
http://cvs.savannah.gnu.org/viewcvs/emacs/src/nsselect.m?cvsroot=emacs&r1=1.12&r2=1.13

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7557
retrieving revision 1.7558
diff -u -b -r1.7557 -r1.7558
--- ChangeLog   4 Jun 2009 02:45:14 -0000       1.7557
+++ ChangeLog   5 Jun 2009 14:08:16 -0000       1.7558
@@ -1,3 +1,9 @@
+2009-06-05  David Reitter  <address@hidden>
+
+       * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p,
+       Fx_selection_owner_p): rename from Fns_own_selection_internal,
+       Fns_selection_exists_p, Fns_selection_owner_p.
+
 2009-06-03  Jason Rumney  <address@hidden>
 
        * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if

Index: nsselect.m
===================================================================
RCS file: /sources/emacs/emacs/src/nsselect.m,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- nsselect.m  13 Apr 2009 18:45:15 -0000      1.12
+++ nsselect.m  5 Jun 2009 14:08:17 -0000       1.13
@@ -371,8 +371,8 @@
    ========================================================================== 
*/
 
 
-DEFUN ("ns-own-selection-internal", Fns_own_selection_internal,
-       Sns_own_selection_internal, 2, 2, 0,
+DEFUN ("x-own-selection-internal", Fx_own_selection_internal,
+       Sx_own_selection_internal, 2, 2, 0,
        doc: /* Assert a selection.
 SELECTION-NAME is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
 VALUE is typically a string, or a cons of two markers, but may be
@@ -426,7 +426,7 @@
 }
 
 
-DEFUN ("ns-selection-exists-p", Fns_selection_exists_p, Sns_selection_exists_p,
+DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p,
        0, 1, 0, doc: /* Whether there is an owner for the given selection.
 The arg should be the name of the selection in question, typically one of
 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
@@ -449,7 +449,7 @@
 }
 
 
-DEFUN ("ns-selection-owner-p", Fns_selection_owner_p, Sns_selection_owner_p,
+DEFUN ("x-selection-owner-p", Fx_selection_owner_p, Sx_selection_owner_p,
        0, 1, 0,
        doc: /* Whether the current Emacs process owns the given selection.
 The arg should be the name of the selection in question, typically one of
@@ -556,9 +556,9 @@
 
   defsubr (&Sx_disown_selection_internal);
   defsubr (&Sx_get_selection_internal);
-  defsubr (&Sns_own_selection_internal);
-  defsubr (&Sns_selection_exists_p);
-  defsubr (&Sns_selection_owner_p);
+  defsubr (&Sx_own_selection_internal);
+  defsubr (&Sx_selection_exists_p);
+  defsubr (&Sx_selection_owner_p);
 #ifdef CUT_BUFFER_SUPPORT
   defsubr (&Sns_get_cut_buffer_internal);
   defsubr (&Sns_rotate_cut_buffers_internal);




reply via email to

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