emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 70899d9 005/433: Changed (progn (require ...)) to (when t


From: Dmitry Gutov
Subject: [elpa] master 70899d9 005/433: Changed (progn (require ...)) to (when t (require ...)) because the
Date: Thu, 15 Mar 2018 19:43:24 -0400 (EDT)

branch: master
commit 70899d94295a0bf33c64fd613d6828dc309cced5
Author: mas <mas>
Commit: mas <mas>

    Changed (progn (require ...)) to (when t (require ...)) because the
    first is still "top level" for the byte compiler.
---
 mmm-auto.el   | 4 ++--
 mmm-class.el  | 4 ++--
 mmm-cmds.el   | 4 ++--
 mmm-mason.el  | 4 ++--
 mmm-mode.el   | 4 ++--
 mmm-region.el | 4 ++--
 mmm-sample.el | 4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/mmm-auto.el b/mmm-auto.el
index 23ba748..beb1f6e 100644
--- a/mmm-auto.el
+++ b/mmm-auto.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2000 by Michael Abraham Shulman
 
 ;; Author: Michael Abraham Shulman <address@hidden>
-;; Version: $Id: mmm-auto.el,v 1.2 2000/04/30 01:47:03 mas Exp $
+;; Version: $Id: mmm-auto.el,v 1.3 2000/04/30 08:03:09 mas Exp $
 
 ;;{{{ GPL
 
@@ -74,7 +74,7 @@
 ;;; Code:
 
 (require 'cl)
-(progn
+(when t
   (require 'mmm-vars))
 
 ;;{{{ Autoloads
diff --git a/mmm-class.el b/mmm-class.el
index f2db19f..3611d28 100644
--- a/mmm-class.el
+++ b/mmm-class.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2000 by Michael Abraham Shulman
 
 ;; Author: Michael Abraham Shulman <address@hidden>
-;; Version: $Id: mmm-class.el,v 1.2 2000/04/30 01:47:03 mas Exp $
+;; Version: $Id: mmm-class.el,v 1.3 2000/04/30 08:03:09 mas Exp $
 
 ;;{{{ GPL
 
@@ -34,7 +34,7 @@
 
 (require 'font-lock)
 (require 'cl)
-(progn
+(when t
   (require 'mmm-vars)
   (require 'mmm-region))
 
diff --git a/mmm-cmds.el b/mmm-cmds.el
index 4257cf0..963250b 100644
--- a/mmm-cmds.el
+++ b/mmm-cmds.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2000 by Michael Abraham Shulman
 
 ;; Author: Michael Abraham Shulman <address@hidden>
-;; Version: $Id: mmm-cmds.el,v 1.2 2000/04/30 01:47:03 mas Exp $
+;; Version: $Id: mmm-cmds.el,v 1.3 2000/04/30 08:03:09 mas Exp $
 
 ;;{{{ GPL
 
@@ -32,7 +32,7 @@
 
 (require 'font-lock)
 (require 'mmm-compat)
-(progn
+(when t
   (require 'mmm-vars)
   (require 'mmm-class))
 
diff --git a/mmm-mason.el b/mmm-mason.el
index 4d00a32..b48104d 100644
--- a/mmm-mason.el
+++ b/mmm-mason.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2000 by Michael Abraham Shulman
 
 ;; Author: Michael Abraham Shulman <address@hidden>
-;; Version: $Id: mmm-mason.el,v 1.2 2000/04/30 01:47:03 mas Exp $
+;; Version: $Id: mmm-mason.el,v 1.3 2000/04/30 08:03:09 mas Exp $
 
 ;;{{{ GPL
 
@@ -74,7 +74,7 @@
 
 ;;; Code:
 
-(progn
+(when t
   (require 'mmm-auto))
 
 ;;{{{ Perl Tags
diff --git a/mmm-mode.el b/mmm-mode.el
index fb7102c..2a6e7a2 100644
--- a/mmm-mode.el
+++ b/mmm-mode.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 1999 by Michael Abraham Shulman
 
 ;; Author: Michael Abraham Shulman <address@hidden>
-;; Version: $Id: mmm-mode.el,v 1.2 2000/04/30 01:47:04 mas Exp $
+;; Version: $Id: mmm-mode.el,v 1.3 2000/04/30 08:03:10 mas Exp $
 ;; Keywords: convenience faces languages tools
 
 ;;{{{ GPL
@@ -89,7 +89,7 @@
 (require 'font-lock)
 (require 'mmm-compat)
 (require 'mmm-utils)
-(progn
+(when t
   (require 'mmm-vars)
   (require 'mmm-auto)
   (require 'mmm-region)
diff --git a/mmm-region.el b/mmm-region.el
index c8e21c7..11217d3 100644
--- a/mmm-region.el
+++ b/mmm-region.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2000 by Michael Abraham Shulman
 
 ;; Author: Michael Abraham Shulman <address@hidden>
-;; Version: $Id: mmm-region.el,v 1.3 2000/04/30 07:53:20 mas Exp $
+;; Version: $Id: mmm-region.el,v 1.4 2000/04/30 08:03:10 mas Exp $
 
 ;;{{{ GPL
 
@@ -38,7 +38,7 @@
 (require 'mmm-compat)
 (require 'mmm-utils)
 (require 'mmm-auto)
-(progn
+(when t
   (require 'mmm-vars))
 
 ;; CREATION & DELETION
diff --git a/mmm-sample.el b/mmm-sample.el
index ddd581a..a4444d6 100644
--- a/mmm-sample.el
+++ b/mmm-sample.el
@@ -3,7 +3,7 @@
 ;; Copyright (C) 2000 by Michael Abraham Shulman
 
 ;; Author: Michael Abraham Shulman <address@hidden>
-;; Version: $Id: mmm-sample.el,v 1.2 2000/04/30 01:47:04 mas Exp $
+;; Version: $Id: mmm-sample.el,v 1.3 2000/04/30 08:03:11 mas Exp $
 
 ;;{{{ GPL
 
@@ -31,7 +31,7 @@
 
 ;;; Code:
 
-(progn
+(when t
   (require 'mmm-auto))
 
 ;;{{{ CSS embedded in HTML



reply via email to

[Prev in Thread] Current Thread [Next in Thread]