summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2014-10-20 20:19:15 +0100
committerGlenn Morris <rgm@gnu.org>2014-10-20 20:19:15 +0100
commitdfccf2f60da8a69a7371c3731c0c1af4f5745426 (patch)
tree3bb2dcdee1b3d528f932a9af5279c6aa80e16e4a /lisp/emacs-lisp
parent41e856b539eab6080eeacd313c7f201dc3955d8c (diff)
downloademacs-dfccf2f60da8a69a7371c3731c0c1af4f5745426.tar.gz
emacs-dfccf2f60da8a69a7371c3731c0c1af4f5745426.tar.bz2
emacs-dfccf2f60da8a69a7371c3731c0c1af4f5745426.zip
Temporarily revert previous bytecomp change
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/bytecomp.el11
1 files changed, 5 insertions, 6 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 69c4e0f1628..e5f8a8cc22a 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -3261,11 +3261,11 @@ If it is nil, then the handler is \"byte-compile-SYMBOL.\""
(byte-defop-compiler cons 2)
(byte-defop-compiler aref 2)
(byte-defop-compiler set 2)
-(byte-defop-compiler (= byte-eqlsign) 2) ;; -and bug#18767
-(byte-defop-compiler (< byte-lss) 2) ;; -and bug#18767
-(byte-defop-compiler (> byte-gtr) 2) ;; -and bug#18767
-(byte-defop-compiler (<= byte-leq) 2) ;; -and bug#18767
-(byte-defop-compiler (>= byte-geq) 2) ;; -and bug#18767
+(byte-defop-compiler (= byte-eqlsign) 2-and)
+(byte-defop-compiler (< byte-lss) 2-and)
+(byte-defop-compiler (> byte-gtr) 2-and)
+(byte-defop-compiler (<= byte-leq) 2-and)
+(byte-defop-compiler (>= byte-geq) 2-and)
(byte-defop-compiler get 2)
(byte-defop-compiler nth 2)
(byte-defop-compiler substring 2-3)
@@ -3332,7 +3332,6 @@ If it is nil, then the handler is \"byte-compile-SYMBOL.\""
(defun byte-compile-and-folded (form)
"Compile calls to functions like `<='.
These implicitly `and' together a bunch of two-arg bytecodes."
- ;; FIXME: bug#18767 means we can't do it this way!
(let ((l (length form)))
(cond
((< l 3) (byte-compile-form `(progn ,(nth 1 form) t)))