diff options
| author | Philipp Stephani | 2022-01-05 01:41:46 +0100 |
|---|---|---|
| committer | Philipp Stephani | 2022-01-05 01:41:46 +0100 |
| commit | c0cfbca311e6e07e9f8b9c1c9d0e2fe9792cd08c (patch) | |
| tree | 52a12a9e6d3c11006d97a68ad72fb94adbc90639 | |
| parent | 6e53178a37d65218818fac3da1beac33db6ab5eb (diff) | |
| download | emacs-c0cfbca311e6e07e9f8b9c1c9d0e2fe9792cd08c.tar.gz emacs-c0cfbca311e6e07e9f8b9c1c9d0e2fe9792cd08c.zip | |
* lisp/emacs-lisp/checkdoc.el (bytecomp): Add missing require
| -rw-r--r-- | lisp/emacs-lisp/checkdoc.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/checkdoc.el b/lisp/emacs-lisp/checkdoc.el index 3a2ded7c783..660b7062d1e 100644 --- a/lisp/emacs-lisp/checkdoc.el +++ b/lisp/emacs-lisp/checkdoc.el | |||
| @@ -161,6 +161,7 @@ | |||
| 161 | 161 | ||
| 162 | ;;; Code: | 162 | ;;; Code: |
| 163 | 163 | ||
| 164 | (require 'bytecomp) ;; for byte-compile-docstring-max-column | ||
| 164 | (require 'cl-lib) | 165 | (require 'cl-lib) |
| 165 | (require 'help-mode) ;; for help-xref-info-regexp | 166 | (require 'help-mode) ;; for help-xref-info-regexp |
| 166 | (require 'thingatpt) ;; for handy thing-at-point-looking-at | 167 | (require 'thingatpt) ;; for handy thing-at-point-looking-at |