From 9e028368b54dc64fdf895cb80c1a60d76771a466 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 7 Jul 2002 20:48:58 +0000 Subject: [PATCH] (insert-string): Update the obsolete info. (makehash): Move from C and mark obsolete. --- lisp/subr.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/subr.el b/lisp/subr.el index 94aedd0dceb..73b3dcfd603 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -708,8 +708,9 @@ Like the function `insert' except that any argument that is a number 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 () -- 2.11.4.GIT