From: Juanma Barranquero Date: Thu, 10 Apr 2008 11:07:37 +0000 (+0000) Subject: (assoc-ignore-case, assoc-ignore-representation): X-Git-Tag: emacs-pretest-23.0.90~6354 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2b69ccfd469e67f772920e52ef52fa5aa1cbef02;p=emacs.git (assoc-ignore-case, assoc-ignore-representation): Add WHEN to obsolescence declaration. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0fc3194de5c..5f202701639 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-04-10 Juanma Barranquero + * subr.el (assoc-ignore-case, assoc-ignore-representation): + Add WHEN to obsolescence declaration. + * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el. 2008-04-10 Dan Nicolaescu diff --git a/lisp/subr.el b/lisp/subr.el index eee59086419..17fe146aff6 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -382,14 +382,14 @@ If TEST is omitted or nil, `equal' is used." (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.