aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-10 10:55:23 +0000
committerRichard M. Stallman1997-07-10 10:55:23 +0000
commitb8ae93ada3a826ad9ad263c61efbe6ae3dcbf2f5 (patch)
tree0666471fb86161eaa5c8cc3a20d5fb7b5ea1fb82
parent41d58f614700c926b8ae8e94214cfc21451a80ea (diff)
downloademacs-b8ae93ada3a826ad9ad263c61efbe6ae3dcbf2f5.tar.gz
emacs-b8ae93ada3a826ad9ad263c61efbe6ae3dcbf2f5.zip
(char-after): Allow 0 args.
-rw-r--r--lisp/emacs-lisp/bytecomp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 0a4d932b73c..d0699aefe11 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -10,7 +10,7 @@
10 10
11;;; This version incorporates changes up to version 2.10 of the 11;;; This version incorporates changes up to version 2.10 of the
12;;; Zawinski-Furuseth compiler. 12;;; Zawinski-Furuseth compiler.
13(defconst byte-compile-version "$Revision: 2.29 $") 13(defconst byte-compile-version "$Revision: 2.30 $")
14 14
15;; This file is part of GNU Emacs. 15;; This file is part of GNU Emacs.
16 16
@@ -2332,7 +2332,7 @@ If FORM is a lambda or a macro, byte-compile it as a function."
2332(byte-defop-compiler (1+ byte-add1) 1) 2332(byte-defop-compiler (1+ byte-add1) 1)
2333(byte-defop-compiler (1- byte-sub1) 1) 2333(byte-defop-compiler (1- byte-sub1) 1)
2334(byte-defop-compiler goto-char 1) 2334(byte-defop-compiler goto-char 1)
2335(byte-defop-compiler char-after 1) 2335(byte-defop-compiler char-after 0-1)
2336(byte-defop-compiler set-buffer 1) 2336(byte-defop-compiler set-buffer 1)
2337;;(byte-defop-compiler set-mark 1) ;; obsolete 2337;;(byte-defop-compiler set-mark 1) ;; obsolete
2338(byte-defop-compiler19 forward-word 1) 2338(byte-defop-compiler19 forward-word 1)