+2003-04-29 John Paul Wallington <jpw@gnu.org>
+
+ * emacs-lisp/bytecomp.el (byte-compile-cl-warn): Use `string-match'.
+
2003-04-28 Dave Love <fx@gnu.org>
* emacs-lisp/bytecomp.el (byte-compile-cl-warn): Avoid cl warnings
;;; This version incorporates changes up to version 2.10 of the
;;; Zawinski-Furuseth compiler.
-(defconst byte-compile-version "$Revision: 2.130 $")
+(defconst byte-compile-version "$Revision: 2.131 $")
;; This file is part of GNU Emacs.
;; here than caaar and friends.
(not (and (eq (get func 'byte-compile)
'cl-byte-compile-compiler-macro)
- (match-string "\\`c[ad]+r\\'" (symbol-name func)))))
+ (string-match "\\`c[ad]+r\\'" (symbol-name func)))))
(byte-compile-warn "Function `%s' from cl package called at runtime"
func)))
form)