# HG changeset patch # User Aidan Kehoe # Date 1330712774 0 # Node ID 0df3cedee9ac6e12eac0e246466909560da38b3b # Parent 611a6845ebeeecf74cb6f56bb15a1115e76affa9 select-coercion-alist, not select-conversion-alist, select.el 2012-03-02 Aidan Kehoe * select.el (select-coerce): Whoops, selection-coercion-alist, not selection-conversion-alist, thank you Philip Aston in 4F4A2CBC.1060709@mail.com . diff -r 611a6845ebee -r 0df3cedee9ac lisp/ChangeLog --- 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 + + * 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 * bytecomp.el (byte-compile-catch): diff -r 611a6845ebee -r 0df3cedee9ac lisp/select.el --- 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,