aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1999-08-16 20:57:24 +0000
committerKarl Heuer1999-08-16 20:57:24 +0000
commit475fb2fb88e67b88f094f572865b75f050e151fe (patch)
tree73ec9d7c061d32203f419e01ef384838d4a0a262
parent93be67de75a83425a02209dca9ec4f08d23b2c17 (diff)
downloademacs-475fb2fb88e67b88f094f572865b75f050e151fe.tar.gz
emacs-475fb2fb88e67b88f094f572865b75f050e151fe.zip
(point-at-eol, point-at-bol): New aliases.
-rw-r--r--lisp/subr.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index 04b840e882f..0d918e10dd5 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -557,6 +557,8 @@ Please convert your programs to use the variable `baud-rate' directly."
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.