Mercurial > hg > xemacs-beta
changeset 2217:701dcae521bd
[xemacs-hg @ 2004-08-13 21:19:14 by james]
Specify the correct number of args to forward-word.
author | james |
---|---|
date | Fri, 13 Aug 2004 21:19:15 +0000 |
parents | 352d35ff1c82 |
children | 6efbd24d0f6f |
files | lisp/ChangeLog lisp/bytecomp.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Aug 13 20:55:31 2004 +0000 +++ b/lisp/ChangeLog Fri Aug 13 21:19:15 2004 +0000 @@ -1,3 +1,8 @@ +2004-08-13 Jerry James <james@xemacs.org> + + * bytecomp.el (forward-word): Tell the byte compiler the correct + number of arguments to forward-word. + 2004-07-02 Malcolm Purvis <malcolmp@xemacs.org> * widgets-gtk.el (gtk-widget-instantiate-notebook-internal):
--- a/lisp/bytecomp.el Fri Aug 13 20:55:31 2004 +0000 +++ b/lisp/bytecomp.el Fri Aug 13 21:19:15 2004 +0000 @@ -2956,7 +2956,7 @@ (byte-defop-compiler char-after 0-1+1) (byte-defop-compiler set-buffer 1) ;;(byte-defop-compiler set-mark 1) ;; obsolete -(byte-defop-compiler forward-word 1+1) +(byte-defop-compiler forward-word 0-1+1) (byte-defop-compiler char-syntax 1+1) (byte-defop-compiler nreverse 1) (byte-defop-compiler car-safe 1)