diff options
author | Adrian Robert <Adrian.B.Robert@gmail.com> | 2008-07-28 01:41:57 +0000 |
---|---|---|
committer | Adrian Robert <Adrian.B.Robert@gmail.com> | 2008-07-28 01:41:57 +0000 |
commit | bd6ce2baf7e701efdb42df45cf25e1789e9d66f4 (patch) | |
tree | 2f7021e1b364d067bf726a5db662b29e5c7ad8b5 /src/nsselect.m | |
parent | 0eafa5a7046ee3f4238a0127aeb8b3d783a8dc30 (diff) | |
download | emacs-bd6ce2baf7e701efdb42df45cf25e1789e9d66f4.tar.gz |
code cleanups in NS port
Diffstat (limited to 'src/nsselect.m')
-rw-r--r-- | src/nsselect.m | 19 |
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; static Lisp_Object Vselection_converter_alist; /* 23: new */ -/* Coding system for communicating with other programs. */ -static Lisp_Object Vselection_coding_system; -/* Coding system for the next communicating with other programs. */ -static Lisp_Object Vnext_selection_coding_system; static Lisp_Object Qforeign_selection; NSString *NXSecondaryPboard; @@ -608,21 +604,6 @@ The functions are called with one argument, the selection type\n\ Vns_lost_selection_hooks = Qnil; /* 23: { */ - DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system, - doc: /* Coding system for communicating with other programs. -When sending or receiving text via cut_buffer, selection, and clipboard, -the text is encoded or decoded by this coding system. -The default value is determined by the system script code. */); - Vselection_coding_system = Qnil; - - DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, - doc: /* Coding system for the next communication with other programs. -Usually, `selection-coding-system' is used for communicating with -other programs. But, if this variable is set, it is used for the -next communication only. After the communication, this variable is -set to nil. */); - Vnext_selection_coding_system = Qnil; - Qforeign_selection = intern ("foreign-selection"); staticpro (&Qforeign_selection); /* } */ |