aboutsummaryrefslogtreecommitdiffstats
path: root/src/w16select.c
diff options
context:
space:
mode:
authorPavel Janík2001-12-11 06:23:50 +0000
committerPavel Janík2001-12-11 06:23:50 +0000
commit70da46c31cfe29505f9e2cb6f3ef44dc260b3898 (patch)
tree5ff292f6030474f94251450300bc48b974e94394 /src/w16select.c
parent3ab8acb9c0ae86cf549a7a03c029c279172c6e67 (diff)
downloademacs-70da46c31cfe29505f9e2cb6f3ef44dc260b3898.tar.gz
emacs-70da46c31cfe29505f9e2cb6f3ef44dc260b3898.zip
Change doc-string comments to `new style' [w/`doc:' keyword].
Diffstat (limited to 'src/w16select.c')
-rw-r--r--src/w16select.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/w16select.c b/src/w16select.c
index f8a3733deb1..582c5019e6f 100644
--- a/src/w16select.c
+++ b/src/w16select.c
@@ -481,9 +481,9 @@ static char system_error_msg[] =
481 "(Clipboard interface failure; clipboard data not set.)"; 481 "(Clipboard interface failure; clipboard data not set.)";
482 482
483DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_data, 1, 2, 0, 483DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_data, 1, 2, 0,
484 "This sets the clipboard data to the given text.") 484 doc: /* This sets the clipboard data to the given text. */)
485 (string, frame) 485 (string, frame)
486 Lisp_Object string, frame; 486 Lisp_Object string, frame;
487{ 487{
488 unsigned ok = 1, put_status = 0; 488 unsigned ok = 1, put_status = 0;
489 int nbytes; 489 int nbytes;
@@ -592,7 +592,7 @@ DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_dat
592} 592}
593 593
594DEFUN ("w16-get-clipboard-data", Fw16_get_clipboard_data, Sw16_get_clipboard_data, 0, 1, 0, 594DEFUN ("w16-get-clipboard-data", Fw16_get_clipboard_data, Sw16_get_clipboard_data, 0, 1, 0,
595 "This gets the clipboard data in text format.") 595 doc: /* This gets the clipboard data in text format. */)
596 (frame) 596 (frame)
597 Lisp_Object frame; 597 Lisp_Object frame;
598{ 598{
@@ -691,14 +691,14 @@ DEFUN ("w16-get-clipboard-data", Fw16_get_clipboard_data, Sw16_get_clipboard_dat
691/* Support checking for a clipboard selection. */ 691/* Support checking for a clipboard selection. */
692 692
693DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p, 693DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p,
694 0, 1, 0, 694 0, 1, 0,
695 "Whether there is an owner for the given X Selection.\n\ 695 doc: /* Whether there is an owner for the given X Selection.
696The arg should be the name of the selection in question, typically one of\n\ 696The arg should be the name of the selection in question, typically one of
697the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.\n\ 697the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
698\(Those are literal upper-case symbol names, since that's what X expects.)\n\ 698\(Those are literal upper-case symbol names, since that's what X expects.)
699For convenience, the symbol nil is the same as `PRIMARY',\n\ 699For convenience, the symbol nil is the same as `PRIMARY',
700and t is the same as `SECONDARY'.") 700and t is the same as `SECONDARY'. */)
701 (selection) 701 (selection)
702 Lisp_Object selection; 702 Lisp_Object selection;
703{ 703{
704 CHECK_SYMBOL (selection); 704 CHECK_SYMBOL (selection);
@@ -741,18 +741,18 @@ syms_of_win16select ()
741 defsubr (&Sx_selection_exists_p); 741 defsubr (&Sx_selection_exists_p);
742 742
743 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system, 743 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system,
744 "Coding system for communicating with other X clients.\n\ 744 doc: /* Coding system for communicating with other X clients.
745When sending or receiving text via cut_buffer, selection, and clipboard,\n\ 745When sending or receiving text via cut_buffer, selection, and clipboard,
746the text is encoded or decoded by this coding system.\n\ 746the text is encoded or decoded by this coding system.
747A default value is `iso-latin-1-dos'"); 747A default value is `iso-latin-1-dos'. */);
748 Vselection_coding_system=intern ("iso-latin-1-dos"); 748 Vselection_coding_system=intern ("iso-latin-1-dos");
749 749
750 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, 750 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system,
751 "Coding system for the next communication with other X clients.\n\ 751 doc: /* Coding system for the next communication with other X clients.
752Usually, `selection-coding-system' is used for communicating with\n\ 752Usually, `selection-coding-system' is used for communicating with
753other X clients. But, if this variable is set, it is used for the\n\ 753other X clients. But, if this variable is set, it is used for the
754next communication only. After the communication, this variable is\n\ 754next communication only. After the communication, this variable is
755set to nil."); 755set to nil. */);
756 Vnext_selection_coding_system = Qnil; 756 Vnext_selection_coding_system = Qnil;
757 757
758 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY); 758 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY);