summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-04-06 07:36:36 -0600
committerTom Tromey <tom@tromey.com>2017-04-06 07:36:36 -0600
commitf23c82d165bdbca76b7bdcd9370aa3eec906cc92 (patch)
treebe4807c491ff3c2ba996aa96ee00ae5855333d1e /lisp
parent7a21bdce197915d362750e9a73cc27e4968cf109 (diff)
downloademacs-f23c82d165bdbca76b7bdcd9370aa3eec906cc92.tar.gz
require cl-lib to fix fallout from mhtml series
* lisp/align.el, lisp/calc/calc-embed.el, lisp/cedet/semantic.el, lisp/emulation/viper.el: Require cl-lib.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/align.el2
-rw-r--r--lisp/calc/calc-embed.el1
-rw-r--r--lisp/cedet/semantic.el1
-rw-r--r--lisp/emulation/viper.el2
4 files changed, 6 insertions, 0 deletions
diff --git a/lisp/align.el b/lisp/align.el
index 000b63ed785..102f009a2df 100644
--- a/lisp/align.el
+++ b/lisp/align.el
@@ -118,6 +118,8 @@
;;; Code:
+(require 'cl-lib)
+
(defgroup align nil
"Align text to a specific column, by regexp."
:version "21.1"
diff --git a/lisp/calc/calc-embed.el b/lisp/calc/calc-embed.el
index bd5601b7292..14ab97fbed8 100644
--- a/lisp/calc/calc-embed.el
+++ b/lisp/calc/calc-embed.el
@@ -27,6 +27,7 @@
(require 'calc-ext)
(require 'calc-macs)
+(require 'cl-lib)
;; Declare functions which are defined elsewhere.
(declare-function thing-at-point-looking-at "thingatpt"
diff --git a/lisp/cedet/semantic.el b/lisp/cedet/semantic.el
index a3c03dc4604..6a264cabd65 100644
--- a/lisp/cedet/semantic.el
+++ b/lisp/cedet/semantic.el
@@ -37,6 +37,7 @@
(require 'cedet)
(require 'semantic/tag)
(require 'semantic/lex)
+(require 'cl-lib)
(defvar semantic-version "2.2"
"Current version of Semantic.")
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el
index 81acedbc16d..4b4b4be8978 100644
--- a/lisp/emulation/viper.el
+++ b/lisp/emulation/viper.el
@@ -14,6 +14,8 @@
;; filed in the Emacs bug reporting system against this file, a copy
;; of the bug report be sent to the maintainer's email address.
+(require 'cl-lib)
+
(defconst viper-version "3.14.2 of July 4, 2013"
"The current version of Viper")