aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2002-07-07 20:48:58 +0000
committerStefan Monnier2002-07-07 20:48:58 +0000
commit9e028368b54dc64fdf895cb80c1a60d76771a466 (patch)
tree9fa47a41f23a964d3a6e8a4aa78d8f2b44fee025
parent7473b6ad844fe58aaf359a9d90ef17181abe451c (diff)
downloademacs-9e028368b54dc64fdf895cb80c1a60d76771a466.tar.gz
emacs-9e028368b54dc64fdf895cb80c1a60d76771a466.zip
(insert-string): Update the obsolete info.
(makehash): Move from C and mark obsolete.
-rw-r--r--lisp/subr.el5
1 files 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
708is converted into a string by expressing it in decimal." 708is converted into a string by expressing it in decimal."
709 (dolist (el args) 709 (dolist (el args)
710 (insert (if (integerp el) (number-to-string el) el)))) 710 (insert (if (integerp el) (number-to-string el) el))))
711 711(make-obsolete 'insert-string 'insert "21.4")
712(make-obsolete 'insert-string 'insert "21.3") 712(defun makehash (&optional test) (make-hash-table :test (or test 'eql)))
713(make-obsolete 'makehash 'make-hash-table "21.4")
713 714
714;; Some programs still use this as a function. 715;; Some programs still use this as a function.
715(defun baud-rate () 716(defun baud-rate ()