changeset 5644:0df3cedee9ac

select-coercion-alist, not select-conversion-alist, select.el 2012-03-02 Aidan Kehoe <kehoea@parhasard.net> * select.el (select-coerce): Whoops, selection-coercion-alist, not selection-conversion-alist, thank you Philip Aston in 4F4A2CBC.1060709@mail.com .
author Aidan Kehoe <kehoea@parhasard.net>
date Fri, 02 Mar 2012 18:26:14 +0000
parents 611a6845ebee
children 5d3bb1100832 bc51e191aaea
files lisp/ChangeLog lisp/select.el
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Mon Feb 13 08:00:23 2012 -0500
+++ b/lisp/ChangeLog	Fri Mar 02 18:26:14 2012 +0000
@@ -1,3 +1,9 @@
+2012-03-02  Aidan Kehoe  <kehoea@parhasard.net>
+
+	* select.el (select-coerce):
+	Whoops, selection-coercion-alist, not selection-conversion-alist,
+	thank you Philip Aston in 4F4A2CBC.1060709@mail.com .
+
 2012-01-14  Aidan Kehoe  <kehoea@parhasard.net>
 
 	* bytecomp.el (byte-compile-catch):
--- a/lisp/select.el	Mon Feb 13 08:00:23 2012 -0500
+++ b/lisp/select.el	Fri Mar 02 18:26:14 2012 +0000
@@ -443,7 +443,7 @@
 suitable for return from `get-selection' in the specified DATA-TYPE. Return
 nil if this is impossible, or a suitable representation otherwise."
   (and value
-       (funcall (or (cdr (assq type selection-conversion-alist)) #'ignore)
+       (funcall (or (cdr (assq type selection-coercion-alist)) #'ignore)
                 selection type value)))
 
 ;; The rest of the functions on this "page" are conversion handlers,