[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/xselect.c
From: |
Eli Zaretskii |
Subject: |
[Emacs-diffs] Changes to emacs/src/xselect.c |
Date: |
Fri, 22 Feb 2002 08:18:57 -0500 |
Index: emacs/src/xselect.c
diff -c emacs/src/xselect.c:1.109 emacs/src/xselect.c:1.110
*** emacs/src/xselect.c:1.109 Fri Feb 22 08:15:47 2002
--- emacs/src/xselect.c Fri Feb 22 08:18:57 2002
***************
*** 97,103 ****
Lisp_Object QCOMPOUND_TEXT; /* This is a type of selection. */
! Lisp_Object Qcompound_text_with_extensions;
#ifdef CUT_BUFFER_SUPPORT
Lisp_Object QCUT_BUFFER0, QCUT_BUFFER1, QCUT_BUFFER2, QCUT_BUFFER3,
--- 97,103 ----
Lisp_Object QCOMPOUND_TEXT; /* This is a type of selection. */
! Lisp_Object Qcompound_text_no_extensions;
#ifdef CUT_BUFFER_SUPPORT
Lisp_Object QCUT_BUFFER0, QCUT_BUFFER1, QCUT_BUFFER2, QCUT_BUFFER3,
***************
*** 1766,1772 ****
(int *) size_ret, &stringp);
*nofree_ret = (*data_ret == XSTRING (obj)->data);
if (EQ (Vnext_selection_coding_system,
! Qcompound_text_with_extensions))
type = QCOMPOUND_TEXT;
else if (NILP (type))
type = (stringp ? QSTRING : QCOMPOUND_TEXT);
--- 1766,1772 ----
(int *) size_ret, &stringp);
*nofree_ret = (*data_ret == XSTRING (obj)->data);
if (EQ (Vnext_selection_coding_system,
! Qcompound_text_no_extensions))
type = QCOMPOUND_TEXT;
else if (NILP (type))
type = (stringp ? QSTRING : QCOMPOUND_TEXT);
***************
*** 2435,2442 ****
QATOM = intern ("ATOM"); staticpro (&QATOM);
QATOM_PAIR = intern ("ATOM_PAIR"); staticpro (&QATOM_PAIR);
QNULL = intern ("NULL"); staticpro (&QNULL);
! Qcompound_text_with_extensions = intern ("compound-text-with-extensions");
! staticpro (&Qcompound_text_with_extensions);
#ifdef CUT_BUFFER_SUPPORT
QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0);
--- 2435,2442 ----
QATOM = intern ("ATOM"); staticpro (&QATOM);
QATOM_PAIR = intern ("ATOM_PAIR"); staticpro (&QATOM_PAIR);
QNULL = intern ("NULL"); staticpro (&QNULL);
! Qcompound_text_no_extensions = intern ("compound-text-no-extensions");
! staticpro (&Qcompound_text_no_extensions);
#ifdef CUT_BUFFER_SUPPORT
QCUT_BUFFER0 = intern ("CUT_BUFFER0"); staticpro (&QCUT_BUFFER0);
- [Emacs-diffs] Changes to emacs/src/xselect.c, Eli Zaretskii, 2002/02/22
- [Emacs-diffs] Changes to emacs/src/xselect.c, Eli Zaretskii, 2002/02/22
- [Emacs-diffs] Changes to emacs/src/xselect.c, Eli Zaretskii, 2002/02/22
- [Emacs-diffs] Changes to emacs/src/xselect.c,
Eli Zaretskii <=
- [Emacs-diffs] Changes to emacs/src/xselect.c, Eli Zaretskii, 2002/02/23
- [Emacs-diffs] Changes to emacs/src/xselect.c, Eli Zaretskii, 2002/02/23
- [Emacs-diffs] Changes to emacs/src/xselect.c, Eli Zaretskii, 2002/02/26
- [Emacs-diffs] Changes to emacs/src/xselect.c, Kenichi Handa, 2002/02/28