diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/backtrace.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/byte-opt.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/comp-cstr.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/package.el | 3 |
4 files changed, 4 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/backtrace.el b/lisp/emacs-lisp/backtrace.el index 4ffe6f573c6..d461698c88e 100644 --- a/lisp/emacs-lisp/backtrace.el +++ b/lisp/emacs-lisp/backtrace.el @@ -753,7 +753,7 @@ property for use by navigation." (defun backtrace--line-length-or-nil () "Return `backtrace-line-length' if valid, nil else." - ;; mirror the logic in `cl-print-to-string-with-limits' + ;; mirror the logic in `cl-print-to-string-with-limit' (and (natnump backtrace-line-length) (not (zerop backtrace-line-length)) backtrace-line-length)) diff --git a/lisp/emacs-lisp/byte-opt.el b/lisp/emacs-lisp/byte-opt.el index 5ef2d7fe827..a7e1df3622d 100644 --- a/lisp/emacs-lisp/byte-opt.el +++ b/lisp/emacs-lisp/byte-opt.el @@ -178,7 +178,7 @@ Earlier variables shadow later ones with the same name.") ;; be displayed when the function's source file will be ;; compiled anyway, but more importantly we would otherwise ;; emit spurious warnings here because we don't have the full - ;; context, such as `declare-functions' placed earlier in the + ;; context, such as `declare-function's placed earlier in the ;; source file's code or `with-suppressed-warnings' that ;; surrounded the `defsubst'. (byte-compile-warnings nil)) diff --git a/lisp/emacs-lisp/comp-cstr.el b/lisp/emacs-lisp/comp-cstr.el index 8cff06a383a..1338ae6e139 100644 --- a/lisp/emacs-lisp/comp-cstr.el +++ b/lisp/emacs-lisp/comp-cstr.el @@ -96,7 +96,7 @@ Integer values are handled in the `range' slot.") `comp-common-supertype'.") (subtype-p-mem (make-hash-table :test #'equal) :type hash-table :documentation "Serve memoization for -`comp-subtype-p-mem'.") +`comp-cstr-ctxt-subtype-p-mem'.") (union-1-mem-no-range (make-hash-table :test #'equal) :type hash-table :documentation "Serve memoization for `comp-cstr-union-1'.") diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index d619142d64c..f3077cbbdb8 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -835,8 +835,7 @@ byte-compilation of the new package to fail." If DEPS is non-nil, also activate its dependencies (unless they are already activated). If RELOAD is non-nil, also `load' any files inside the package which -correspond to previously loaded files (those returned by -`package--list-loaded-files')." +correspond to previously loaded files." (let* ((name (package-desc-name pkg-desc)) (pkg-dir (package-desc-dir pkg-desc))) (unless pkg-dir |