diff options
author | Tom Tromey <tom@tromey.com> | 2017-04-06 07:36:36 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2017-04-06 07:36:36 -0600 |
commit | f23c82d165bdbca76b7bdcd9370aa3eec906cc92 (patch) | |
tree | be4807c491ff3c2ba996aa96ee00ae5855333d1e /lisp/align.el | |
parent | 7a21bdce197915d362750e9a73cc27e4968cf109 (diff) | |
download | emacs-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/align.el')
-rw-r--r-- | lisp/align.el | 2 |
1 files changed, 2 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" |