diff options
| author | Stefan Monnier | 2002-07-07 20:48:58 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-07-07 20:48:58 +0000 |
| commit | 9e028368b54dc64fdf895cb80c1a60d76771a466 (patch) | |
| tree | 9fa47a41f23a964d3a6e8a4aa78d8f2b44fee025 | |
| parent | 7473b6ad844fe58aaf359a9d90ef17181abe451c (diff) | |
| download | emacs-9e028368b54dc64fdf895cb80c1a60d76771a466.tar.gz emacs-9e028368b54dc64fdf895cb80c1a60d76771a466.zip | |
(insert-string): Update the obsolete info.
(makehash): Move from C and mark obsolete.
| -rw-r--r-- | lisp/subr.el | 5 |
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 | |||
| 708 | is converted into a string by expressing it in decimal." | 708 | is 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 () |