]> git.eshelyaron.com Git - emacs.git/commitdiff
* bytecomp.el (byte-compile-cl-file-p): Only "cl.el" counts as cl these days.
authorGlenn Morris <rgm@gnu.org>
Fri, 28 Sep 2012 23:30:52 +0000 (19:30 -0400)
committerGlenn Morris <rgm@gnu.org>
Fri, 28 Sep 2012 23:30:52 +0000 (19:30 -0400)
Remove no longer appropriate file-local suppression of CL warnings in
lisp/emacs-lisp/cl-*.el files.

lisp/ChangeLog
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/cl-extra.el
lisp/emacs-lisp/cl-lib.el
lisp/emacs-lisp/cl-macs.el
lisp/emacs-lisp/cl-seq.el

index b923b6aac58da7bc2b5bc89bacf0ef6aa6c4d478..3ed9069acf221cde9fee2d3a4573515b1b0a4a5f 100644 (file)
@@ -1,3 +1,8 @@
+2012-09-28  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/bytecomp.el (byte-compile-cl-file-p):
+       Only "cl.el" counts as cl these days.
+
 2012-09-28  Juri Linkov  <juri@jurta.org>
 
        Display archive errors in the echo area instead of inserting
index 7a2297501786256aeb4b1c028e7319296bf57b16..d49e56bd2ba9bc97a3e7f01fe458f45fc2356afe 100644 (file)
@@ -846,7 +846,7 @@ CONST2 may be evaluated multiple times."
 (defun byte-compile-cl-file-p (file)
   "Return non-nil if FILE is one of the CL files."
   (and (stringp file)
-       (string-match "^cl\\>" (file-name-nondirectory file))))
+       (string-match "^cl\\.el" (file-name-nondirectory file))))
 
 (defun byte-compile-eval (form)
   "Eval FORM and mark the functions defined therein.
index ea5e1cf9beb3b07a64367a3f47dad50a530450c8..913ebf2015f325b623d124766710c89ef0374094 100644 (file)
@@ -689,7 +689,6 @@ PROPLIST is a list of the sort returned by `symbol-plist'.
 
 ;; Local variables:
 ;; byte-compile-dynamic: t
-;; byte-compile-warnings: (not cl-functions)
 ;; generated-autoload-file: "cl-loaddefs.el"
 ;; End:
 
index 5749ff91b40c2afcd2843b374b4e496d8ce25861..2eda628e2623c6fd2467aa1ec79a3351e0007675 100644 (file)
@@ -745,7 +745,6 @@ If ALIST is non-nil, the new pairs are prepended to it."
 
 ;; Local variables:
 ;; byte-compile-dynamic: t
-;; byte-compile-warnings: (not cl-functions)
 ;; End:
 
 ;;; cl-lib.el ends here
index 16ac14f8fe9f33ea55309126d8b404dde904637f..56e698bec0a69761d77969f9cd94b77a8639d804 100644 (file)
@@ -2686,7 +2686,6 @@ surrounded by (cl-block NAME ...).
 
 ;; Local variables:
 ;; byte-compile-dynamic: t
-;; byte-compile-warnings: (not cl-functions)
 ;; generated-autoload-file: "cl-loaddefs.el"
 ;; End:
 
index b55f1df5ba54841336b9ae38ee12cb612353f648..1fa562e328a96f9f480f529ee820d67db03607d0 100644 (file)
@@ -1010,7 +1010,6 @@ Atoms are compared by `eql'; cons cells are compared recursively.
 
 ;; Local variables:
 ;; byte-compile-dynamic: t
-;; byte-compile-warnings: (not cl-functions)
 ;; generated-autoload-file: "cl-loaddefs.el"
 ;; End: