diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2009-03-19 14:45:02 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2009-03-19 14:45:02 +0000 |
commit | 673e51692e2ae76661aff27a809574e0a5e1ece1 (patch) | |
tree | 3bc054a3c2798d113185a48cc8cbba2316815247 /lisp/subr.el | |
parent | 80197a8c7829cc24520c2823c832425285c2b762 (diff) | |
download | emacs-673e51692e2ae76661aff27a809574e0a5e1ece1.tar.gz emacs-673e51692e2ae76661aff27a809574e0a5e1ece1.tar.bz2 emacs-673e51692e2ae76661aff27a809574e0a5e1ece1.zip |
* subr.el (forward-point): Add obsolescence declaration.
* paren.el (show-paren-function):
* simple.el (kill-forward-chars, kill-backward-chars):
Use (+/- (point) N), instead of `forward-point'.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 7b169cc280b..ffe8a9de5b1 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -998,6 +998,7 @@ and `event-end' functions." (define-obsolete-function-alias 'string-to-int 'string-to-number "22.1") (make-obsolete 'char-bytes "now always returns 1." "20.4") +(make-obsolete 'forward-point "use (+ (point) N) instead." "23.1") (defun insert-string (&rest args) "Mocklisp-compatibility insert function. |