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

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

[nongnu] elpa/drupal-mode aa87684203 048/308: Added `require' for suppor


From: ELPA Syncer
Subject: [nongnu] elpa/drupal-mode aa87684203 048/308: Added `require' for supported libraries.
Date: Tue, 25 Jan 2022 10:59:20 -0500 (EST)

branch: elpa/drupal-mode
commit aa87684203b4bba95d146ef4f7baefc14cd5c142
Author: Arne Jørgensen <arne@arnested.dk>
Commit: Arne Jørgensen <arne@arnested.dk>

    Added `require' for supported libraries.
---
 drupal/etags.el         | 2 ++
 drupal/flymake-phpcs.el | 2 ++
 drupal/gtags.el         | 2 ++
 drupal/ispell.el        | 2 ++
 4 files changed, 8 insertions(+)

diff --git a/drupal/etags.el b/drupal/etags.el
index c816ddb7a0..77c9a55253 100644
--- a/drupal/etags.el
+++ b/drupal/etags.el
@@ -6,6 +6,8 @@
 
 ;;; Code:
 
+(require 'etags)
+
 (defun drupal/etags-enable ()
   "Setup TAGS file for etags if it exists in DRUPAL_ROOT."
   (when (and (boundp 'drupal-rootdir)
diff --git a/drupal/flymake-phpcs.el b/drupal/flymake-phpcs.el
index 80d7951fec..8cfd39f1bb 100644
--- a/drupal/flymake-phpcs.el
+++ b/drupal/flymake-phpcs.el
@@ -6,6 +6,8 @@
 
 ;;; Code:
 
+(require 'flymake)
+
 (defcustom drupal/flymake-phpcs-standard
   (ignore-errors
     (let ((standards (with-output-to-string
diff --git a/drupal/gtags.el b/drupal/gtags.el
index 6d55af4126..6309218e42 100644
--- a/drupal/gtags.el
+++ b/drupal/gtags.el
@@ -6,6 +6,8 @@
 
 ;;; Code:
 
+(require 'gtags)
+
 (defun drupal/gtags-enable ()
   "Setup rootdir for gtags to be DRUPAL_ROOT."
   (when (boundp 'drupal-rootdir)
diff --git a/drupal/ispell.el b/drupal/ispell.el
index 703404f13c..0c6701309b 100644
--- a/drupal/ispell.el
+++ b/drupal/ispell.el
@@ -6,6 +6,8 @@
 
 ;;; Code:
 
+(require 'ispell)
+
 (defun drupal/ispell-enable ()
   "Set `ispell-local-dictionary' to `american'.
 Comments and names should use US English spelling (e.g., `color'



reply via email to

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