]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-string): Update the obsolete info.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 7 Jul 2002 20:48:58 +0000 (20:48 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 7 Jul 2002 20:48:58 +0000 (20:48 +0000)
(makehash): Move from C and mark obsolete.

lisp/subr.el

index 94aedd0dceb187684922b0c67acca15a5f08e00c..73b3dcfd603681a78d1ce29d3b76a720623bf473 100644 (file)
@@ -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 ()