emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r103095: `require' is automatically `


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103095: `require' is automatically `eval-and-compile'd.
Date: Wed, 02 Feb 2011 23:21:56 -0800
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103095
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2011-02-02 23:21:56 -0800
message:
  `require' is automatically `eval-and-compile'd.
  
  * hi-lock.el, ps-bdf.el, ps-mule.el, ps-print.el, ps-samp.el:
  `require' is automatically `eval-and-compile'd.
modified:
  lisp/ChangeLog
  lisp/hi-lock.el
  lisp/ps-bdf.el
  lisp/ps-mule.el
  lisp/ps-print.el
  lisp/ps-samp.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-02-03 07:14:02 +0000
+++ b/lisp/ChangeLog    2011-02-03 07:21:56 +0000
@@ -1,5 +1,8 @@
 2011-02-03  Glenn Morris  <address@hidden>
 
+       * hi-lock.el, ps-bdf.el, ps-mule.el, ps-print.el, ps-samp.el:
+       `require' is automatically `eval-and-compile'd.
+
        * net/rcirc.el (rcirc-nick-completion-format): Add :version tag.
        (rcirc-log-directory, rcirc-log-flag): Move definitions before use.
 

=== modified file 'lisp/hi-lock.el'
--- a/lisp/hi-lock.el   2011-01-25 04:08:28 +0000
+++ b/lisp/hi-lock.el   2011-02-03 07:21:56 +0000
@@ -87,8 +87,7 @@
 
 ;;; Code:
 
-(eval-and-compile
-  (require 'font-lock))
+(require 'font-lock)
 
 (defgroup hi-lock nil
   "Interactively add and remove font-lock patterns for highlighting text."

=== modified file 'lisp/ps-bdf.el'
--- a/lisp/ps-bdf.el    2011-01-26 08:36:39 +0000
+++ b/lisp/ps-bdf.el    2011-02-03 07:21:56 +0000
@@ -5,7 +5,6 @@
 ;;   2008, 2009, 2010, 2011
 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
 ;;   Registration Number H14PRO021
-
 ;; Copyright (C) 2003
 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
 ;;   Registration Number H13PRO009
@@ -37,8 +36,7 @@
 
 ;;; Code:
 
-(eval-and-compile
-  (require 'ps-mule))
+(require 'ps-mule)
 
 ;;;###autoload
 (defcustom bdf-directory-list

=== modified file 'lisp/ps-mule.el'
--- a/lisp/ps-mule.el   2011-01-25 04:08:28 +0000
+++ b/lisp/ps-mule.el   2011-02-03 07:21:56 +0000
@@ -88,8 +88,7 @@
 
 ;;; Code:
 
-(eval-and-compile
-  (require 'ps-print))
+(require 'ps-print)
 
 
 ;;;###autoload

=== modified file 'lisp/ps-print.el'
--- a/lisp/ps-print.el  2011-01-28 16:58:04 +0000
+++ b/lisp/ps-print.el  2011-02-03 07:21:56 +0000
@@ -1479,7 +1479,7 @@
 
 
 ;; Load XEmacs/Emacs definitions
-(eval-and-compile (require 'ps-def))
+(require 'ps-def)
 
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -6657,7 +6657,7 @@
 ;; But autoload them here to make the separation invisible.
 
 ;;;### (autoloads (ps-mule-end-job ps-mule-begin-job ps-mule-initialize
-;;;;;;  ps-multibyte-buffer) "ps-mule" "ps-mule.el" 
"0e9db04f70d1221af96488068afa1192")
+;;;;;;  ps-multibyte-buffer) "ps-mule" "ps-mule.el" 
"14536f28e0dcaa956901bb59ad86a875")
 ;;; Generated autoloads from ps-mule.el
 
 (defvar ps-multibyte-buffer nil "\

=== modified file 'lisp/ps-samp.el'
--- a/lisp/ps-samp.el   2011-01-25 04:08:28 +0000
+++ b/lisp/ps-samp.el   2011-02-03 07:21:56 +0000
@@ -34,7 +34,7 @@
 ;;; Code:
 
 
-(eval-and-compile (require 'ps-print))
+(require 'ps-print)
 
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -254,9 +254,8 @@
 (eval-when-compile
   (require 'cl))
 
-(eval-and-compile
-  (require 'printing)
-  (require 'zeroconf))
+(require 'printing)
+(require 'zeroconf)
 
 ;; Add a Postscript printer to the "Postscript printer" menu.
 (defun ps-add-printer (service)


reply via email to

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