diff options
| -rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 335a08b2206..f687839f206 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -4618,7 +4618,7 @@ SUG should be an element of `package-autosuggest-database'." | |||
| 4618 | "Return a list of suggestions that might be interesting the current buffer. | 4618 | "Return a list of suggestions that might be interesting the current buffer. |
| 4619 | The elements of the returned list will be a subset of the elements of | 4619 | The elements of the returned list will be a subset of the elements of |
| 4620 | `package--autosuggest-suggested'." | 4620 | `package--autosuggest-suggested'." |
| 4621 | (and package-autosuggest-mode | 4621 | (and package-autosuggest-mode (eq major-mode 'fundamental-mode) |
| 4622 | (let (suggetions) | 4622 | (let (suggetions) |
| 4623 | (dolist (sug package-autosuggest-database) | 4623 | (dolist (sug package-autosuggest-database) |
| 4624 | (when (package--suggestion-applies-p sug) | 4624 | (when (package--suggestion-applies-p sug) |