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: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el
Date: Wed, 09 Feb 2005 10:52:44 -0500

Index: emacs/lisp/subr.el
diff -c emacs/lisp/subr.el:1.433 emacs/lisp/subr.el:1.434
*** emacs/lisp/subr.el:1.433    Wed Jan 19 23:44:48 2005
--- emacs/lisp/subr.el  Wed Feb  9 15:50:41 2005
***************
*** 810,818 ****
  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 ()
--- 810,818 ----
  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 "22.1")
  (defun makehash (&optional test) (make-hash-table :test (or test 'eql)))
! (make-obsolete 'makehash 'make-hash-table "22.1")
  
  ;; Some programs still use this as a function.
  (defun baud-rate ()
***************
*** 837,845 ****
    "use timers instead, with `run-with-idle-timer'." "before 19.34")
  
  (defvaralias 'x-lost-selection-hooks 'x-lost-selection-functions)
! (make-obsolete-variable 'x-lost-selection-hooks 'x-lost-selection-functions 
"21.4")
  (defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions)
! (make-obsolete-variable 'x-sent-selection-hooks 'x-sent-selection-functions 
"21.4")
  
  (defvaralias 'messages-buffer-max-lines 'message-log-max)
  
--- 837,845 ----
    "use timers instead, with `run-with-idle-timer'." "before 19.34")
  
  (defvaralias 'x-lost-selection-hooks 'x-lost-selection-functions)
! (make-obsolete-variable 'x-lost-selection-hooks 'x-lost-selection-functions 
"22.1")
  (defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions)
! (make-obsolete-variable 'x-sent-selection-hooks 'x-sent-selection-functions 
"22.1")
  
  (defvaralias 'messages-buffer-max-lines 'message-log-max)
  
***************
*** 1156,1162 ****
  
  (make-obsolete 'process-kill-without-query
                 "use `process-query-on-exit-flag' or 
`set-process-query-on-exit-flag'."
!                "21.4")
  (defun process-kill-without-query (process &optional flag)
    "Say no query needed if PROCESS is running when Emacs is exited.
  Optional second argument if non-nil says to require a query.
--- 1156,1162 ----
  
  (make-obsolete 'process-kill-without-query
                 "use `process-query-on-exit-flag' or 
`set-process-query-on-exit-flag'."
!                "22.1")
  (defun process-kill-without-query (process &optional flag)
    "Say no query needed if PROCESS is running when Emacs is exited.
  Optional second argument if non-nil says to require a query.




reply via email to

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