diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl-extra.el | 3 | ||||
-rw-r--r-- | lisp/emacs-lisp/package.el | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-extra.el b/lisp/emacs-lisp/cl-extra.el index e9bfe8df5f2..323bbbbf947 100644 --- a/lisp/emacs-lisp/cl-extra.el +++ b/lisp/emacs-lisp/cl-extra.el @@ -72,8 +72,7 @@ strings case-insensitively." (cond ((eq x y) t) ((stringp x) (and (stringp y) (= (length x) (length y)) - (or (string-equal x y) - (string-equal (downcase x) (downcase y))))) ;Lazy but simple! + (eq (compare-strings x nil nil y nil nil t) t))) ((numberp x) (and (numberp y) (= x y))) ((consp x) diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 43eb038a865..bce17a04ba7 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -2045,7 +2045,7 @@ Mark the installed package as selected by adding it to When called from Lisp and optional argument DONT-SELECT is non-nil, install the package but do not add it to -`package-select-packages'. +`package-selected-packages'. If PKG is a `package-desc' and it is already installed, don't try to install it but still mark it as selected." @@ -3042,6 +3042,7 @@ column in the header line." (defun package-menu--generate (remember-pos &optional packages keywords) "Populate and display the Package Menu. +If REMEMBER-POS is non-nil, keep point on the same entry. PACKAGES should be t, which means to display all known packages, or a list of package names (symbols) to display. |