aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2001-12-14 19:58:10 +0000
committerPavel Janík2001-12-14 19:58:10 +0000
commit47a31c6bab51918c70bc70b6cd0574f9ada1fc9f (patch)
tree41997c8886163a16ee28c8eefed4f07dcc43c303
parent0e4435bed655f34994cbf2d6e8b9b7290a44756d (diff)
downloademacs-47a31c6bab51918c70bc70b6cd0574f9ada1fc9f.tar.gz
emacs-47a31c6bab51918c70bc70b6cd0574f9ada1fc9f.zip
(xselect-convert-to-class, xselect-convert-to-name): Documented.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/select.el4
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 54ac8e19c25..123828ec292 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12001-12-14 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * select.el (xselect-convert-to-class, xselect-convert-to-name):
4 Documented.
5
12001-12-14 Andre Spiegel <spiegel@gnu.org> 62001-12-14 Andre Spiegel <spiegel@gnu.org>
2 7
3 * vc-hooks.el (vc-checkout-model, vc-state, vc-workfile-version): 8 * vc-hooks.el (vc-checkout-model, vc-state, vc-workfile-version):
diff --git a/lisp/select.el b/lisp/select.el
index af35956194d..5417572bc8f 100644
--- a/lisp/select.el
+++ b/lisp/select.el
@@ -276,11 +276,15 @@ Cut buffers are considered obsolete; you should use selections instead."
276 (user-full-name)) 276 (user-full-name))
277 277
278(defun xselect-convert-to-class (selection type size) 278(defun xselect-convert-to-class (selection type size)
279 "Convert selection to class.
280This function returns the string \"Emacs\"."
279 "Emacs") 281 "Emacs")
280 282
281;; We do not try to determine the name Emacs was invoked with, 283;; We do not try to determine the name Emacs was invoked with,
282;; because it is not clean for a program's behavior to depend on that. 284;; because it is not clean for a program's behavior to depend on that.
283(defun xselect-convert-to-name (selection type size) 285(defun xselect-convert-to-name (selection type size)
286 "Convert selection to name.
287This function returns the string \"emacs\"."
284 "emacs") 288 "emacs")
285 289
286(defun xselect-convert-to-integer (selection type value) 290(defun xselect-convert-to-integer (selection type value)