diff options
| -rw-r--r-- | lisp/emacs-lisp/package.el | 2 | ||||
| -rw-r--r-- | src/xdisp.c | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 9a704b2d98c..362335220f0 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -1556,7 +1556,7 @@ similar to an entry in `package-alist'. Save the cached copy to | |||
| 1556 | (content (buffer-string)) | 1556 | (content (buffer-string)) |
| 1557 | (dir (expand-file-name (concat "archives/" name) package-user-dir)) | 1557 | (dir (expand-file-name (concat "archives/" name) package-user-dir)) |
| 1558 | (local-file (expand-file-name file dir))) | 1558 | (local-file (expand-file-name file dir))) |
| 1559 | (when (listp (read-from-string content)) | 1559 | (when (listp (read content)) |
| 1560 | (make-directory dir t) | 1560 | (make-directory dir t) |
| 1561 | (if (or (not package-check-signature) | 1561 | (if (or (not package-check-signature) |
| 1562 | (member name package-unsigned-archives)) | 1562 | (member name package-unsigned-archives)) |
diff --git a/src/xdisp.c b/src/xdisp.c index e383b3b0d16..9b4febdd61a 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -32847,8 +32847,10 @@ mouse pointer enters it. | |||
| 32847 | Autoselection selects the minibuffer only if it is active, and never | 32847 | Autoselection selects the minibuffer only if it is active, and never |
| 32848 | unselects the minibuffer if it is active. | 32848 | unselects the minibuffer if it is active. |
| 32849 | 32849 | ||
| 32850 | When customizing this variable make sure that the actual value of | 32850 | If you want to use the mouse to autoselect a window on another frame, |
| 32851 | `focus-follows-mouse' matches the behavior of your window manager. */); | 32851 | make sure that (1) your window manager has focus follow the mouse and |
| 32852 | (2) the value of the option `focus-follows-mouse' matches the policy | ||
| 32853 | of your window manager. */); | ||
| 32852 | Vmouse_autoselect_window = Qnil; | 32854 | Vmouse_autoselect_window = Qnil; |
| 32853 | 32855 | ||
| 32854 | DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars, | 32856 | DEFVAR_LISP ("auto-resize-tool-bars", Vauto_resize_tool_bars, |