diff options
author | Glenn Morris <rgm@gnu.org> | 2007-10-29 00:22:36 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-10-29 00:22:36 +0000 |
commit | 877873196957b89fba4daa1e3ec1ab310b0e4e5d (patch) | |
tree | 2e6331c6aee136035b9112d19d69706f4ced1295 /lisp/emacs-lisp | |
parent | bdf5c7d9aea5479ad897871c20c0b1350151085d (diff) | |
download | emacs-877873196957b89fba4daa1e3ec1ab310b0e4e5d.tar.gz emacs-877873196957b89fba4daa1e3ec1ab310b0e4e5d.tar.bz2 emacs-877873196957b89fba4daa1e3ec1ab310b0e4e5d.zip |
Move local variables to end of file, and set byte-compile-warnings to
`(not cl-functions)'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index 8d609509f10..6174e06edb6 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el @@ -1,4 +1,4 @@ -;;; cl.el --- Common Lisp extensions for Emacs -*-byte-compile-dynamic: t;-*- +;;; cl.el --- Common Lisp extensions for Emacs ;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, ;; 2006, 2007 Free Software Foundation, Inc. @@ -658,5 +658,10 @@ If ALIST is non-nil, the new pairs are prepended to it." (run-hooks 'cl-load-hook) +;; Local variables: +;; byte-compile-dynamic: t +;; byte-compile-warnings: (not cl-functions) +;; End: + ;; arch-tag: 5f07fa74-f153-4524-9303-21f5be125851 ;;; cl.el ends here |