diff options
| author | Tom Tromey | 2017-04-06 07:36:36 -0600 |
|---|---|---|
| committer | Tom Tromey | 2017-04-06 07:36:36 -0600 |
| commit | f23c82d165bdbca76b7bdcd9370aa3eec906cc92 (patch) | |
| tree | be4807c491ff3c2ba996aa96ee00ae5855333d1e | |
| parent | 7a21bdce197915d362750e9a73cc27e4968cf109 (diff) | |
| download | emacs-f23c82d165bdbca76b7bdcd9370aa3eec906cc92.tar.gz emacs-f23c82d165bdbca76b7bdcd9370aa3eec906cc92.zip | |
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.
| -rw-r--r-- | lisp/align.el | 2 | ||||
| -rw-r--r-- | lisp/calc/calc-embed.el | 1 | ||||
| -rw-r--r-- | lisp/cedet/semantic.el | 1 | ||||
| -rw-r--r-- | lisp/emulation/viper.el | 2 |
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 @@ | |||
| 118 | 118 | ||
| 119 | ;;; Code: | 119 | ;;; Code: |
| 120 | 120 | ||
| 121 | (require 'cl-lib) | ||
| 122 | |||
| 121 | (defgroup align nil | 123 | (defgroup align nil |
| 122 | "Align text to a specific column, by regexp." | 124 | "Align text to a specific column, by regexp." |
| 123 | :version "21.1" | 125 | :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 @@ | |||
| 27 | 27 | ||
| 28 | (require 'calc-ext) | 28 | (require 'calc-ext) |
| 29 | (require 'calc-macs) | 29 | (require 'calc-macs) |
| 30 | (require 'cl-lib) | ||
| 30 | 31 | ||
| 31 | ;; Declare functions which are defined elsewhere. | 32 | ;; Declare functions which are defined elsewhere. |
| 32 | (declare-function thing-at-point-looking-at "thingatpt" | 33 | (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 @@ | |||
| 37 | (require 'cedet) | 37 | (require 'cedet) |
| 38 | (require 'semantic/tag) | 38 | (require 'semantic/tag) |
| 39 | (require 'semantic/lex) | 39 | (require 'semantic/lex) |
| 40 | (require 'cl-lib) | ||
| 40 | 41 | ||
| 41 | (defvar semantic-version "2.2" | 42 | (defvar semantic-version "2.2" |
| 42 | "Current version of Semantic.") | 43 | "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 @@ | |||
| 14 | ;; filed in the Emacs bug reporting system against this file, a copy | 14 | ;; filed in the Emacs bug reporting system against this file, a copy |
| 15 | ;; of the bug report be sent to the maintainer's email address. | 15 | ;; of the bug report be sent to the maintainer's email address. |
| 16 | 16 | ||
| 17 | (require 'cl-lib) | ||
| 18 | |||
| 17 | (defconst viper-version "3.14.2 of July 4, 2013" | 19 | (defconst viper-version "3.14.2 of July 4, 2013" |
| 18 | "The current version of Viper") | 20 | "The current version of Viper") |
| 19 | 21 | ||