Skip to content

Commit f23c82d

Browse files
committed
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.
1 parent 7a21bdc commit f23c82d

File tree

4 files changed

+6
-0
lines changed

4 files changed

+6
-0
lines changed

lisp/align.el

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,8 @@
118118

119119
;;; Code:
120120

121+
(require 'cl-lib)
122+
121123
(defgroup align nil
122124
"Align text to a specific column, by regexp."
123125
:version "21.1"

lisp/calc/calc-embed.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
(require 'calc-ext)
2929
(require 'calc-macs)
30+
(require 'cl-lib)
3031

3132
;; Declare functions which are defined elsewhere.
3233
(declare-function thing-at-point-looking-at "thingatpt"

lisp/cedet/semantic.el

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
(require 'cedet)
3838
(require 'semantic/tag)
3939
(require 'semantic/lex)
40+
(require 'cl-lib)
4041

4142
(defvar semantic-version "2.2"
4243
"Current version of Semantic.")

lisp/emulation/viper.el

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
;; filed in the Emacs bug reporting system against this file, a copy
1515
;; of the bug report be sent to the maintainer's email address.
1616

17+
(require 'cl-lib)
18+
1719
(defconst viper-version "3.14.2 of July 4, 2013"
1820
"The current version of Viper")
1921

0 commit comments

Comments
 (0)