/[emacs]/emacs/lisp/subr.el
ViewVC logotype

Diff of /emacs/lisp/subr.el

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.450 by nickrob, Sun May 15 23:57:15 2005 UTC revision 1.451 by lektu, Tue May 17 15:03:12 2005 UTC
# Line 762  and `event-end' functions." Line 762  and `event-end' functions."
762  (defalias 'eval-current-buffer 'eval-buffer)  (defalias 'eval-current-buffer 'eval-buffer)
763    
764  (make-obsolete 'char-bytes "now always returns 1." "20.4")  (make-obsolete 'char-bytes "now always returns 1." "20.4")
765  (make-obsolete 'baud-rate "use the `baud-rate' variable instead." "before 19.15")  (define-obsolete-function-alias 'string-to-int 'string-to-number)
766    
767  (defun insert-string (&rest args)  (defun insert-string (&rest args)
768    "Mocklisp-compatibility insert function.    "Mocklisp-compatibility insert function.
# Line 771  is converted into a string by expressing Line 771  is converted into a string by expressing
771    (dolist (el args)    (dolist (el args)
772      (insert (if (integerp el) (number-to-string el) el))))      (insert (if (integerp el) (number-to-string el) el))))
773  (make-obsolete 'insert-string 'insert "22.1")  (make-obsolete 'insert-string 'insert "22.1")
774    
775  (defun makehash (&optional test) (make-hash-table :test (or test 'eql)))  (defun makehash (&optional test) (make-hash-table :test (or test 'eql)))
776  (make-obsolete 'makehash 'make-hash-table "22.1")  (make-obsolete 'makehash 'make-hash-table "22.1")
777    
# Line 778  is converted into a string by expressing Line 779  is converted into a string by expressing
779  (defun baud-rate ()  (defun baud-rate ()
780    "Return the value of the `baud-rate' variable."    "Return the value of the `baud-rate' variable."
781    baud-rate)    baud-rate)
782    (make-obsolete 'baud-rate "use the `baud-rate' variable instead." "before 19.15")
783    
784    
785  ;;;; Obsolescence declarations for variables, and aliases.  ;;;; Obsolescence declarations for variables, and aliases.
# Line 822  is converted into a string by expressing Line 824  is converted into a string by expressing
824  (defalias 'point-at-eol 'line-end-position)  (defalias 'point-at-eol 'line-end-position)
825  (defalias 'point-at-bol 'line-beginning-position)  (defalias 'point-at-bol 'line-beginning-position)
826    
 ;;; Should this be an obsolete name?  If you decide it should, you get  
 ;;; to go through all the sources and change them.  
 (define-obsolete-function-alias 'string-to-int 'string-to-number)  
827    
828  ;;;; Hook manipulation functions.  ;;;; Hook manipulation functions.
829    

Legend:
Removed from v.1.450  
changed lines
  Added in v.1.451

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26