summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2008-04-10 11:07:37 +0000
committerJuanma Barranquero <lekktu@gmail.com>2008-04-10 11:07:37 +0000
commit2b69ccfd469e67f772920e52ef52fa5aa1cbef02 (patch)
tree78caea8fc3515523a461b2eb44173b8e7a416b6f /lisp/subr.el
parentf01d54ca92320c28c16accd9bfecb371bad74573 (diff)
downloademacs-2b69ccfd469e67f772920e52ef52fa5aa1cbef02.tar.gz
emacs-2b69ccfd469e67f772920e52ef52fa5aa1cbef02.tar.bz2
emacs-2b69ccfd469e67f772920e52ef52fa5aa1cbef02.zip
(assoc-ignore-case, assoc-ignore-representation):
Add WHEN to obsolescence declaration.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el4
1 files changed, 2 insertions, 2 deletions
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.