aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2000-07-21 02:39:45 +0000
committerKenichi Handa <[email protected]>2000-07-21 02:39:45 +0000
commit11270583fe28b5af6b2c19862af597e8d676783d (patch)
tree03e8518728e2fa1610db9cac268aa923b0a42c67 /src/xselect.c
parentd60660d6e9121bd2fc5184a5e9fea6a5d98dc39d (diff)
*** empty log message ***
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xselect.c b/src/xselect.c
index dba8289ccd..ac26016078 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -1648,17 +1648,17 @@ lisp_data_to_selection_data (display, obj,
{
/* Since we are now handling multilingual text, we must consider
sending back compound text. */
- int latin1_p;
+ int stringp;
if (NILP (Vnext_selection_coding_system))
Vnext_selection_coding_system = Vselection_coding_system;
*format_ret = 8;
*data_ret = x_encode_text (obj, Vnext_selection_coding_system,
- (int *) size_ret, &latin1_p);
+ (int *) size_ret, &stringp);
*nofree_ret = (*data_ret == XSTRING (obj)->data);
if (NILP (type))
- type = (latin1_p ? QSTRING : QCOMPOUND_TEXT);
+ type = (stringp ? QSTRING : QCOMPOUND_TEXT);
Vlast_coding_system_used = (*nofree_ret
? Qraw_text
: Vnext_selection_coding_system);