comparison lisp/subr.el @ 25293:fd43e1a99384

(point-at-eol, point-at-bol): New aliases.
author Karl Heuer <kwzh@gnu.org>
date Mon, 16 Aug 1999 20:57:24 +0000
parents e4493f0697ae
children 737e82c21934
comparison
equal deleted inserted replaced
25292:0a9e93f020a3 25293:fd43e1a99384
555 (defalias 'backward-delete-char 'delete-backward-char) 555 (defalias 'backward-delete-char 'delete-backward-char)
556 (defalias 'search-forward-regexp (symbol-function 're-search-forward)) 556 (defalias 'search-forward-regexp (symbol-function 're-search-forward))
557 (defalias 'search-backward-regexp (symbol-function 're-search-backward)) 557 (defalias 'search-backward-regexp (symbol-function 're-search-backward))
558 (defalias 'int-to-string 'number-to-string) 558 (defalias 'int-to-string 'number-to-string)
559 (defalias 'store-match-data 'set-match-data) 559 (defalias 'store-match-data 'set-match-data)
560 (defalias 'point-at-eol 'line-end-position)
561 (defalias 'point-at-bol 'line-beginning-position)
560 562
561 ;;; Should this be an obsolete name? If you decide it should, you get 563 ;;; Should this be an obsolete name? If you decide it should, you get
562 ;;; to go through all the sources and change them. 564 ;;; to go through all the sources and change them.
563 (defalias 'string-to-int 'string-to-number) 565 (defalias 'string-to-int 'string-to-number)
564 566