]> git.eshelyaron.com Git - emacs.git/commitdiff
; Unconditionally require built-in libraries
authorStefan Kangas <stefan@marxist.se>
Mon, 8 Aug 2022 15:11:52 +0000 (17:11 +0200)
committerStefan Kangas <stefan@marxist.se>
Mon, 8 Aug 2022 16:18:50 +0000 (18:18 +0200)
lisp/cedet/semantic/wisent/python.el
lisp/eshell/esh-util.el
lisp/mh-e/mh-folder.el
lisp/mh-e/mh-gnus.el
lisp/mh-e/mh-search.el
lisp/obsolete/mh-compat.el

index 941efbbbef343df83b33933065f7f0f36f0e56bf..6b2833ef4485b4ed5917672781b2e7d3813a01fc 100644 (file)
@@ -1,6 +1,6 @@
 ;;; wisent-python.el --- Semantic support for Python  -*- lexical-binding: t; -*-
 
-;; Copyright (C) 2002, 2004, 2006-2022 Free Software Foundation, Inc.
+;; Copyright (C) 2002-2022 Free Software Foundation, Inc.
 
 ;; Author: Richard Kim <emacs18@gmail.com>
 ;; Created: June 2002
@@ -27,9 +27,7 @@
 
 ;;; Code:
 
-;; Try to load python support, but fail silently since it is only used
-;; for optional functionality
-(require 'python nil t)
+(require 'python)
 
 (require 'semantic/wisent)
 (require 'semantic/wisent/python-wy)
index 5144e3051214d040e99b87b5d5f761422f88efda..9258ca5e40e0e06d9dcdb9eb9c2a5ba623062d3d 100644 (file)
@@ -539,7 +539,7 @@ list."
 (autoload 'parse-time-string "parse-time")
 
 (eval-when-compile
-  (require 'ange-ftp nil t))           ; ange-ftp-parse-filename
+  (require 'ange-ftp))         ; ange-ftp-parse-filename
 
 (defvar tramp-file-name-structure)
 (declare-function ange-ftp-ls "ange-ftp"
index 7f200534ef9a6759af48494d51546dd222c776fd..5b902902378f5cff54455e8412cf0651de533980 100644 (file)
@@ -510,7 +510,7 @@ font-lock is done highlighting.")
   nil)
 
 ;; Register mh-folder-mode as supporting which-function-mode...
-(eval-and-compile (require 'which-func nil t))
+(require 'which-func)
 (when (and (boundp 'which-func-modes) (listp which-func-modes))
   (add-to-list 'which-func-modes 'mh-folder-mode))
 
index 685553164cf68799be2d000d2ff27f40af9c9675..b797000566ebaa5320bf0f93297467b77c71973c 100644 (file)
 
 (require 'mh-e)
 
-(eval-and-compile
-  (require 'gnus-util nil t)
-  (require 'mm-bodies nil t)
-  (require 'mm-decode nil t)
-  (require 'mm-view nil t)
-  (require 'mml nil t))
+(require 'gnus-util)
+(require 'mm-bodies)
+(require 'mm-decode)
+(require 'mm-view)
+(require 'mml)
 
 (defun mh-gnus-local-map-property (map)
   "Return a list suitable for a text property list specifying keymap MAP."
index 8a8a8c3358141bab2c0a17cd2fa94ef582f57177..058ea4499fdc0c22e7f9faea598fc0c65cb7245a 100644 (file)
@@ -1411,7 +1411,7 @@ being the list of messages originally from that folder."
     (when cur-msg (mh-goto-msg cur-msg t t))
     (set-buffer-modified-p old-buffer-modified-flag)))
 
-(eval-and-compile (require 'which-func nil t))
+(require 'which-func)
 
 ;;;###mh-autoload
 (defun mh-index-create-imenu-index ()
index 2c9d1b73e28077ffb3fefdc2b975377a704215f3..a5be3bd7426659941df57664c94d71f71b950060 100644 (file)
@@ -84,7 +84,7 @@ the completions."
 (define-obsolete-function-alias 'mh-line-end-position
   #'line-end-position "29.1")
 
-(require 'mailabbrev nil t)
+(require 'mailabbrev)
 (define-obsolete-function-alias 'mh-mail-abbrev-make-syntax-table
   #'mail-abbrev-make-syntax-table "29.1")