diff options
author | Glenn Morris <rgm@gnu.org> | 2009-09-18 07:49:47 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-09-18 07:49:47 +0000 |
commit | 08cf18e4ad3cae08660f17e7561c5332fb44b4f4 (patch) | |
tree | 1aeb5b735699ca79d8ca96020d75bbd31b2936b8 /lisp/allout.el | |
parent | 3f527154d1e21a5c0eb23d84d0c01dcdb03cfae8 (diff) | |
download | emacs-08cf18e4ad3cae08660f17e7561c5332fb44b4f4.tar.gz |
(top-level): Remove unnecessary progn.
Diffstat (limited to 'lisp/allout.el')
-rw-r--r-- | lisp/allout.el | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/lisp/allout.el b/lisp/allout.el index 98f729c93a9..2a5e7296dda 100644 --- a/lisp/allout.el +++ b/lisp/allout.el @@ -1,7 +1,7 @@ ;;; allout.el --- extensive outline mode for use alone and with other modes -;; Copyright (C) 1992, 1993, 1994, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 1992, 1993, 1994, 2001, 2002, 2003, 2004, 2005, +;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ;; Author: Ken Manheimer <ken dot manheimer at gmail dot com> ;; Maintainer: Ken Manheimer <ken dot manheimer at gmail dot com> @@ -87,15 +87,14 @@ ;; Most of the requires here are for stuff covered by autoloads. ;; Since just byte-compiling doesn't trigger autoloads, so that ;; "function not found" warnings would occur without these requires. - (progn - (require 'pgg) - (require 'pgg-gpg) - (require 'overlay) - ;; `cl' is required for `assert'. `assert' is not covered by a standard - ;; autoload, but it is a macro, so that eval-when-compile is sufficient - ;; to byte-compile it in, or to do the require when the buffer evalled. - (require 'cl) - )) + (require 'pgg) + (require 'pgg-gpg) + (require 'overlay) + ;; `cl' is required for `assert'. `assert' is not covered by a standard + ;; autoload, but it is a macro, so that eval-when-compile is sufficient + ;; to byte-compile it in, or to do the require when the buffer evalled. + (require 'cl) + ) ;;;_* USER CUSTOMIZATION VARIABLES: |