diff options
Diffstat (limited to 'lisp/emacs-lisp/bytecomp.el')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 2f22388d87d..9ba613b267d 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2178,7 +2178,7 @@ list that represents a doc string reference. (let ((old-load-list current-load-list) (args (mapcar 'eval (cdr form)))) (apply 'require args) - ;; Detech (require 'cl) in a way that works even if cl is already loaded. + ;; Detect (require 'cl) in a way that works even if cl is already loaded. (if (member (car args) '("cl" cl)) (setq byte-compile-warnings (remq 'cl-functions byte-compile-warnings)))) |