emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/subr.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el
Date: Sun, 07 Jul 2002 16:49:23 -0400

Index: emacs/lisp/subr.el
diff -c emacs/lisp/subr.el:1.312 emacs/lisp/subr.el:1.313
*** emacs/lisp/subr.el:1.312    Wed Jul  3 05:17:35 2002
--- emacs/lisp/subr.el  Sun Jul  7 16:48:58 2002
***************
*** 708,715 ****
  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 ()
--- 708,716 ----
  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.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 ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]