Mercurial > emacs
changeset 46219:56b79cbf05d2
(insert-string): Update the obsolete info.
(makehash): Move from C and mark obsolete.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 07 Jul 2002 20:48:58 +0000 |
parents | 3bf04111920d |
children | 5abad41fb43b |
files | lisp/subr.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/subr.el Sun Jul 07 20:25:23 2002 +0000 +++ b/lisp/subr.el Sun Jul 07 20:48:58 2002 +0000 @@ -708,8 +708,9 @@ is converted into a string by expressing it in decimal." (dolist (el args) (insert (if (integerp el) (number-to-string el) el)))) - -(make-obsolete 'insert-string 'insert "21.3") +(make-obsolete 'insert-string 'insert "21.4") +(defun makehash (&optional test) (make-hash-table :test (or test 'eql))) +(make-obsolete 'makehash 'make-hash-table "21.4") ;; Some programs still use this as a function. (defun baud-rate ()