]> git.eshelyaron.com Git - emacs.git/commitdiff
(insert-string): Moved from mocklisp.c, reimplemented in Lisp. Obsoleted.
authorPavel Janík <Pavel@Janik.cz>
Sat, 22 Dec 2001 13:36:12 +0000 (13:36 +0000)
committerPavel Janík <Pavel@Janik.cz>
Sat, 22 Dec 2001 13:36:12 +0000 (13:36 +0000)
lisp/subr.el

index f34db188a0f9eb81b282f04b1954e35f9e18a543..c199bee05dc32b0d603bba8085e575c568306bda 100644 (file)
@@ -652,6 +652,15 @@ as returned by the `event-start' and `event-end' functions."
 (make-obsolete 'sref 'aref "20.4")
 (make-obsolete 'char-bytes "Now this function always returns 1" "20.4")
 
+(defun insert-string (&rest args)
+  "Mocklisp-compatibility insert function.
+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")
+
 ;; Some programs still use this as a function.
 (defun baud-rate ()
   "Obsolete function returning the value of the `baud-rate' variable.