diff options
| author | John Paul Wallington | 2004-08-14 10:01:55 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2004-08-14 10:01:55 +0000 |
| commit | 78642e03de5db7d943198e4f6b52e98a1704360e (patch) | |
| tree | 5dabe3fefbcda25fe612396012a09329608ec417 /lisp | |
| parent | d48102cf5fa56a2f0f29f6b576b372b4f2216a0e (diff) | |
| download | emacs-78642e03de5db7d943198e4f6b52e98a1704360e.tar.gz emacs-78642e03de5db7d943198e4f6b52e98a1704360e.zip | |
(forward-word): Allow 0 args.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2645cdbefa3..c0caca8e94e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-08-14 John Paul Wallington <jpw@gnu.org> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (forward-word): Allow 0 args. | ||
| 4 | |||
| 1 | 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org> | 5 | 2004-08-11 Daniel Pfeiffer <occitan@esperanto.org> |
| 2 | 6 | ||
| 3 | * speedbar.el (speedbar-scan-subdirs): New option. | 7 | * speedbar.el (speedbar-scan-subdirs): New option. |
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index a4ae751cab7..0a12f6fae9f 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el | |||
| @@ -2900,7 +2900,7 @@ If FORM is a lambda or a macro, byte-compile it as a function." | |||
| 2900 | (byte-defop-compiler char-after 0-1) | 2900 | (byte-defop-compiler char-after 0-1) |
| 2901 | (byte-defop-compiler set-buffer 1) | 2901 | (byte-defop-compiler set-buffer 1) |
| 2902 | ;;(byte-defop-compiler set-mark 1) ;; obsolete | 2902 | ;;(byte-defop-compiler set-mark 1) ;; obsolete |
| 2903 | (byte-defop-compiler19 forward-word 1) | 2903 | (byte-defop-compiler19 forward-word 0-1) |
| 2904 | (byte-defop-compiler19 char-syntax 1) | 2904 | (byte-defop-compiler19 char-syntax 1) |
| 2905 | (byte-defop-compiler19 nreverse 1) | 2905 | (byte-defop-compiler19 nreverse 1) |
| 2906 | (byte-defop-compiler19 car-safe 1) | 2906 | (byte-defop-compiler19 car-safe 1) |