summaryrefslogtreecommitdiff
path: root/lisp/select.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-10-23 19:13:37 -0700
committerGlenn Morris <rgm@gnu.org>2010-10-23 19:13:37 -0700
commit3646b86d0ed250ed89d5cf40b731ef55fb46f052 (patch)
treedea64cdf7156f8b5eecc4ec522207a9457fc9a80 /lisp/select.el
parent8aa0f26343d11229fb87cd6a4473598b99b6b9a2 (diff)
downloademacs-3646b86d0ed250ed89d5cf40b731ef55fb46f052.tar.gz
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.
Diffstat (limited to 'lisp/select.el')
-rw-r--r--lisp/select.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/select.el b/lisp/select.el
index 3e9cd2d5d53..2b97ca483b1 100644
--- a/lisp/select.el
+++ b/lisp/select.el
@@ -1,12 +1,11 @@
;;; select.el --- lisp portion of standard selection support
+;; Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+;; 2008, 2009, 2010 Free Software Foundation, Inc.
+
;; Maintainer: FSF
;; Keywords: internal
-;; Copyright (C) 1993, 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
-;; 2008, 2009, 2010 Free Software Foundation, Inc.
-;; Based partially on earlier release by Lucid.
-
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
@@ -24,6 +23,8 @@
;;; Commentary:
+;; Based partially on earlier release by Lucid.
+
;;; Code:
(defcustom selection-coding-system nil
@@ -58,11 +59,11 @@ The default value is nil."
(set symbol value)))
(defvar next-selection-coding-system nil
- "Coding system for the next communication with other X clients.
+ "Coding system for the next communication with other programs.
Usually, `selection-coding-system' is used for communicating with
-other X clients. But, if this variable is set, it is used for
-the next communication only. After the communication, this
-variable is set to nil.")
+other programs (X Windows clients or MS Windows programs). But, if this
+variable is set, it is used for the next communication only.
+After the communication, this variable is set to nil.")
(declare-function x-get-selection-internal "xselect.c"
(selection-symbol target-type &optional time-stamp))
@@ -380,5 +381,4 @@ This function returns the string \"emacs\"."
(provide 'select)
-;; arch-tag: bb634f97-8a3b-4b0a-b940-f6e09982328c
;;; select.el ends here