]> git.eshelyaron.com Git - emacs.git/commitdiff
(top-level): Remove unnecessary progn.
authorGlenn Morris <rgm@gnu.org>
Fri, 18 Sep 2009 07:49:47 +0000 (07:49 +0000)
committerGlenn Morris <rgm@gnu.org>
Fri, 18 Sep 2009 07:49:47 +0000 (07:49 +0000)
lisp/ChangeLog
lisp/allout.el

index 54e994ff4f76458b45cd31d174760976b58385fa..86462243520aed2fbf42037e86182fe0f7367d04 100644 (file)
@@ -1,5 +1,7 @@
 2009-09-18  Glenn Morris  <rgm@gnu.org>
 
+       * allout.el (top-level): Remove unnecessary progn.
+
        * progmodes/js.el (js-end-of-defun): Remove malformed and unneeded let.
 
        * emacs-lisp/derived.el (define-derived-mode): Fix paren typo in
index 98f729c93a9653f396b03d9f6058c4f3d3d784a4..2a5e7296dda5b187f45238a44eb534b931332ce0 100644 (file)
@@ -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>
   ;; 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: