comparison lisp/allout.el @ 105080:37b8e423433c

(top-level): Remove unnecessary progn.
author Glenn Morris <rgm@gnu.org>
date Fri, 18 Sep 2009 07:49:47 +0000
parents 4efc7ca085ce
children f8ba8d6fd250
comparison
equal deleted inserted replaced
105079:dda0d3b309c7 105080:37b8e423433c
1 ;;; allout.el --- extensive outline mode for use alone and with other modes 1 ;;; allout.el --- extensive outline mode for use alone and with other modes
2 2
3 ;; Copyright (C) 1992, 1993, 1994, 2001, 2002, 2003, 2004, 3 ;; Copyright (C) 1992, 1993, 1994, 2001, 2002, 2003, 2004, 2005,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. 4 ;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
5 5
6 ;; Author: Ken Manheimer <ken dot manheimer at gmail dot com> 6 ;; Author: Ken Manheimer <ken dot manheimer at gmail dot com>
7 ;; Maintainer: Ken Manheimer <ken dot manheimer at gmail dot com> 7 ;; Maintainer: Ken Manheimer <ken dot manheimer at gmail dot com>
8 ;; Created: Dec 1991 -- first release to usenet 8 ;; Created: Dec 1991 -- first release to usenet
9 ;; Version: 2.2.1 9 ;; Version: 2.2.1
85 (require 'overlay) 85 (require 'overlay)
86 (eval-when-compile 86 (eval-when-compile
87 ;; Most of the requires here are for stuff covered by autoloads. 87 ;; Most of the requires here are for stuff covered by autoloads.
88 ;; Since just byte-compiling doesn't trigger autoloads, so that 88 ;; Since just byte-compiling doesn't trigger autoloads, so that
89 ;; "function not found" warnings would occur without these requires. 89 ;; "function not found" warnings would occur without these requires.
90 (progn 90 (require 'pgg)
91 (require 'pgg) 91 (require 'pgg-gpg)
92 (require 'pgg-gpg) 92 (require 'overlay)
93 (require 'overlay) 93 ;; `cl' is required for `assert'. `assert' is not covered by a standard
94 ;; `cl' is required for `assert'. `assert' is not covered by a standard 94 ;; autoload, but it is a macro, so that eval-when-compile is sufficient
95 ;; autoload, but it is a macro, so that eval-when-compile is sufficient 95 ;; to byte-compile it in, or to do the require when the buffer evalled.
96 ;; to byte-compile it in, or to do the require when the buffer evalled. 96 (require 'cl)
97 (require 'cl) 97 )
98 ))
99 98
100 ;;;_* USER CUSTOMIZATION VARIABLES: 99 ;;;_* USER CUSTOMIZATION VARIABLES:
101 100
102 ;;;_ > defgroup allout 101 ;;;_ > defgroup allout
103 (defgroup allout nil 102 (defgroup allout nil