Mercurial > emacs
changeset 93971:2d29453eb5e6
(assoc-ignore-case, assoc-ignore-representation):
Add WHEN to obsolescence declaration.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Thu, 10 Apr 2008 11:06:02 +0000 |
parents | a2c00669e273 |
children | 5d1c1d3e8c97 |
files | lisp/subr.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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.