# HG changeset patch # User Juanma Barranquero # Date 1207825562 0 # Node ID 2d29453eb5e675e5039e811e7d558c25ceff946f # Parent a2c00669e2739322c4f4b36eb2407c7a816cf080 (assoc-ignore-case, assoc-ignore-representation): Add WHEN to obsolescence declaration. diff -r a2c00669e273 -r 2d29453eb5e6 lisp/subr.el --- a/lisp/subr.el Thu Apr 10 09:53:56 2008 +0000 +++ b/lisp/subr.el Thu Apr 10 11:06:02 2008 +0000 @@ -382,14 +382,14 @@ (setq tail (cdr tail))) value)) -(make-obsolete 'assoc-ignore-case 'assoc-string) +(make-obsolete 'assoc-ignore-case 'assoc-string "22.1") (defun assoc-ignore-case (key alist) "Like `assoc', but ignores differences in case and text representation. KEY must be a string. Upper-case and lower-case letters are treated as equal. Unibyte strings are converted to multibyte for comparison." (assoc-string key alist t)) -(make-obsolete 'assoc-ignore-representation 'assoc-string) +(make-obsolete 'assoc-ignore-representation 'assoc-string "22.1") (defun assoc-ignore-representation (key alist) "Like `assoc', but ignores differences in text representation. KEY must be a string.