Mercurial > emacs
comparison src/w16select.c @ 111135:600f564fdc23
Sync Lisp and C docs of next-selection-coding-system.
* src/w16select.c (syms_of_win16select) <next-selection-coding-system>:
* src/w32select.c (syms_of_w32select) <next-selection-coding-system>:
Sync docs with select.el.
* lisp/select.el (next-selection-coding-system): Sync doc with C versions.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 23 Oct 2010 19:13:37 -0700 |
parents | 55c8c3ca3d48 |
children | bc1274182cc8 |
comparison
equal
deleted
inserted
replaced
111134:a3c68a313b81 | 111135:600f564fdc23 |
---|---|
1 /* 16-bit Windows Selection processing for emacs on MS-Windows | 1 /* 16-bit Windows Selection processing for emacs on MS-Windows |
2 Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, | 2 |
3 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. | 3 Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
4 2008, 2009, 2010 Free Software Foundation, Inc. | |
4 | 5 |
5 This file is part of GNU Emacs. | 6 This file is part of GNU Emacs. |
6 | 7 |
7 GNU Emacs is free software: you can redistribute it and/or modify | 8 GNU Emacs is free software: you can redistribute it and/or modify |
8 it under the terms of the GNU General Public License as published by | 9 it under the terms of the GNU General Public License as published by |
698 the text is encoded or decoded by this coding system. | 699 the text is encoded or decoded by this coding system. |
699 The default value is `iso-latin-1-dos'. */); | 700 The default value is `iso-latin-1-dos'. */); |
700 Vselection_coding_system = intern ("iso-latin-1-dos"); | 701 Vselection_coding_system = intern ("iso-latin-1-dos"); |
701 | 702 |
702 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, | 703 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, |
703 doc: /* Coding system for the next communication with other X clients. | 704 doc: /* Coding system for the next communication with other programs. |
704 Usually, `selection-coding-system' is used for communicating with | 705 Usually, `selection-coding-system' is used for communicating with |
705 other X clients. But, if this variable is set, it is used for the | 706 other programs (X Windows clients or MS Windows programs). But, if this |
706 next communication only. After the communication, this variable is | 707 variable is set, it is used for the next communication only. |
707 set to nil. */); | 708 After the communication, this variable is set to nil. */); |
708 Vnext_selection_coding_system = Qnil; | 709 Vnext_selection_coding_system = Qnil; |
709 | 710 |
710 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY); | 711 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY); |
711 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD); | 712 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD); |
712 } | 713 } |
713 | 714 |
714 #endif /* MSDOS */ | 715 #endif /* MSDOS */ |
715 | 716 |
716 /* arch-tag: 085a22c8-7324-436e-a6da-102464ce95d8 | |
717 (do not change this comment) */ |