aboutsummaryrefslogtreecommitdiffstats
path: root/src/nsselect.m
diff options
context:
space:
mode:
authorAdrian Robert2008-07-28 01:41:57 +0000
committerAdrian Robert2008-07-28 01:41:57 +0000
commitbd6ce2baf7e701efdb42df45cf25e1789e9d66f4 (patch)
tree2f7021e1b364d067bf726a5db662b29e5c7ad8b5 /src/nsselect.m
parent0eafa5a7046ee3f4238a0127aeb8b3d783a8dc30 (diff)
downloademacs-bd6ce2baf7e701efdb42df45cf25e1789e9d66f4.tar.gz
emacs-bd6ce2baf7e701efdb42df45cf25e1789e9d66f4.zip
code cleanups in NS port
Diffstat (limited to 'src/nsselect.m')
-rw-r--r--src/nsselect.m19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/nsselect.m b/src/nsselect.m
index 35a9f43634a..88f8b262507 100644
--- a/src/nsselect.m
+++ b/src/nsselect.m
@@ -40,10 +40,6 @@ static Lisp_Object Vselection_alist;
40static Lisp_Object Vselection_converter_alist; 40static Lisp_Object Vselection_converter_alist;
41 41
42/* 23: new */ 42/* 23: new */
43/* Coding system for communicating with other programs. */
44static Lisp_Object Vselection_coding_system;
45/* Coding system for the next communicating with other programs. */
46static Lisp_Object Vnext_selection_coding_system;
47static Lisp_Object Qforeign_selection; 43static Lisp_Object Qforeign_selection;
48 44
49NSString *NXSecondaryPboard; 45NSString *NXSecondaryPboard;
@@ -608,21 +604,6 @@ The functions are called with one argument, the selection type\n\
608 Vns_lost_selection_hooks = Qnil; 604 Vns_lost_selection_hooks = Qnil;
609 605
610/* 23: { */ 606/* 23: { */
611 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system,
612 doc: /* Coding system for communicating with other programs.
613When sending or receiving text via cut_buffer, selection, and clipboard,
614the text is encoded or decoded by this coding system.
615The default value is determined by the system script code. */);
616 Vselection_coding_system = Qnil;
617
618 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system,
619 doc: /* Coding system for the next communication with other programs.
620Usually, `selection-coding-system' is used for communicating with
621other programs. But, if this variable is set, it is used for the
622next communication only. After the communication, this variable is
623set to nil. */);
624 Vnext_selection_coding_system = Qnil;
625
626 Qforeign_selection = intern ("foreign-selection"); 607 Qforeign_selection = intern ("foreign-selection");
627 staticpro (&Qforeign_selection); 608 staticpro (&Qforeign_selection);
628/* } */ 609/* } */