diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/subr.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0fc3194de5c..5f202701639 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-04-10 Juanma Barranquero <lekktu@gmail.com> | 1 | 2008-04-10 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 2 | ||
| 3 | * subr.el (assoc-ignore-case, assoc-ignore-representation): | ||
| 4 | Add WHEN to obsolescence declaration. | ||
| 5 | |||
| 3 | * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el. | 6 | * makefile.w32-in (AUTOGENEL): Add calc-loaddefs.el. |
| 4 | 7 | ||
| 5 | 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu> | 8 | 2008-04-10 Dan Nicolaescu <dann@ics.uci.edu> |
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." | |||
| 382 | (setq tail (cdr tail))) | 382 | (setq tail (cdr tail))) |
| 383 | value)) | 383 | value)) |
| 384 | 384 | ||
| 385 | (make-obsolete 'assoc-ignore-case 'assoc-string) | 385 | (make-obsolete 'assoc-ignore-case 'assoc-string "22.1") |
| 386 | (defun assoc-ignore-case (key alist) | 386 | (defun assoc-ignore-case (key alist) |
| 387 | "Like `assoc', but ignores differences in case and text representation. | 387 | "Like `assoc', but ignores differences in case and text representation. |
| 388 | KEY must be a string. Upper-case and lower-case letters are treated as equal. | 388 | KEY must be a string. Upper-case and lower-case letters are treated as equal. |
| 389 | Unibyte strings are converted to multibyte for comparison." | 389 | Unibyte strings are converted to multibyte for comparison." |
| 390 | (assoc-string key alist t)) | 390 | (assoc-string key alist t)) |
| 391 | 391 | ||
| 392 | (make-obsolete 'assoc-ignore-representation 'assoc-string) | 392 | (make-obsolete 'assoc-ignore-representation 'assoc-string "22.1") |
| 393 | (defun assoc-ignore-representation (key alist) | 393 | (defun assoc-ignore-representation (key alist) |
| 394 | "Like `assoc', but ignores differences in text representation. | 394 | "Like `assoc', but ignores differences in text representation. |
| 395 | KEY must be a string. | 395 | KEY must be a string. |