[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master f23c82d: require cl-lib to fix fallout from mhtml s
From: |
Tom Tromey |
Subject: |
[Emacs-diffs] master f23c82d: require cl-lib to fix fallout from mhtml series |
Date: |
Thu, 6 Apr 2017 09:40:25 -0400 (EDT) |
branch: master
commit f23c82d165bdbca76b7bdcd9370aa3eec906cc92
Author: Tom Tromey <address@hidden>
Commit: Tom Tromey <address@hidden>
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.
---
lisp/align.el | 2 ++
lisp/calc/calc-embed.el | 1 +
lisp/cedet/semantic.el | 1 +
lisp/emulation/viper.el | 2 ++
4 files changed, 6 insertions(+)
diff --git a/lisp/align.el b/lisp/align.el
index 000b63e..102f009 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 bd5601b..14ab97f 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 a3c03dc..6a264ca 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 81acedb..4b4b4be 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")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master f23c82d: require cl-lib to fix fallout from mhtml series,
Tom Tromey <=