diff options
| author | Adrian Robert | 2008-07-28 01:41:57 +0000 |
|---|---|---|
| committer | Adrian Robert | 2008-07-28 01:41:57 +0000 |
| commit | bd6ce2baf7e701efdb42df45cf25e1789e9d66f4 (patch) | |
| tree | 2f7021e1b364d067bf726a5db662b29e5c7ad8b5 /src/nsselect.m | |
| parent | 0eafa5a7046ee3f4238a0127aeb8b3d783a8dc30 (diff) | |
| download | emacs-bd6ce2baf7e701efdb42df45cf25e1789e9d66f4.tar.gz emacs-bd6ce2baf7e701efdb42df45cf25e1789e9d66f4.zip | |
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; | |||
| 40 | static Lisp_Object Vselection_converter_alist; | 40 | static Lisp_Object Vselection_converter_alist; |
| 41 | 41 | ||
| 42 | /* 23: new */ | 42 | /* 23: new */ |
| 43 | /* Coding system for communicating with other programs. */ | ||
| 44 | static Lisp_Object Vselection_coding_system; | ||
| 45 | /* Coding system for the next communicating with other programs. */ | ||
| 46 | static Lisp_Object Vnext_selection_coding_system; | ||
| 47 | static Lisp_Object Qforeign_selection; | 43 | static Lisp_Object Qforeign_selection; |
| 48 | 44 | ||
| 49 | NSString *NXSecondaryPboard; | 45 | NSString *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. | ||
| 613 | When sending or receiving text via cut_buffer, selection, and clipboard, | ||
| 614 | the text is encoded or decoded by this coding system. | ||
| 615 | The 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. | ||
| 620 | Usually, `selection-coding-system' is used for communicating with | ||
| 621 | other programs. But, if this variable is set, it is used for the | ||
| 622 | next communication only. After the communication, this variable is | ||
| 623 | set 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 | /* } */ |