Files
emacs/lisp
Alan Mackenzie 2ecbf4cfae Allow minibuffer to stay in its original frame. Tidy up this area.
* doc/emacs/mini.texi (Basic Minibuffer): Add an entry for
minibuffer-follows-selected-frame.

* doc/lispref/minibuf.texi (Minibuffer Misc): Describe the new parameter to
minibufferp, LIVE.

* etc/NEWS: Add an entry describing the new minibuffer strategy.

* lisp/cus-start.el (minibuffer-prompt-properties--setter): Add an entry for
minibuffer-follows-selected-frame.

* lisp/minibuffer.el (minibuffer-message): Check for the current buffer being
an _active_ minibuffer rather than merely a minibuffer.

* src/frame.c (do_switch_frame): Call move_minibuffer_onto_frame.

* src/lisp.h (Top level): Add prototypes for move_minibuffer_onto_frame and
is_minibuffer.

* src/minibuf.c (minibuf_follows_frame): New function which ignores local and
let-bound values of minibuffer-follows-selected-frame.
(choose_minibuf_frame): Reformulate this function to reuse a minibuffer window
where possible, and to ensure no other frame has its minibuffer current, but
only when `minibuffer-follows-selected-frame'.
(move_minibuffer_onto_frame): New function.
(live_minibuffer_p): New function.
(Fminibufferp): Add a new &optional parameter LIVE.  Reformulate, possibly
calling live_minibuffer_p.
(read_minibuf): move the incrementation of minibuf_level to before the call of
choose_minibuf_frame.  Empty the miniwindows of frames without an active
minibuffer, rather than of all but the current frame.
(is_minibuffer): New function.
(read_minibuf_unwind): Note the miniwindow being restored and resize all other
miniwindows to zero size.
(minibuffer-follows-selected-frame): New configuration variable.

* src/window.c (candidate_window_p): In some scenarios, check the miniwindow
holds an active minibuffer.

* src/xdisp.c (get_window_cursor_type): Suppress the cursor for non-active
miniwindows, regardless of minibuf_level.
2020-11-05 19:27:43 +00:00
..
2020-11-04 10:40:25 -08:00
2020-10-24 20:23:27 +02:00
2020-10-24 20:23:27 +02:00
2020-11-03 04:19:53 +01:00
2020-11-04 07:40:16 +01:00
2020-10-01 15:28:14 +02:00
2020-10-02 09:38:24 -07:00
2020-09-22 01:01:36 +02:00
2020-11-02 09:27:40 -08:00
2020-10-03 12:53:51 +02:00
2020-10-03 12:53:51 +02:00
2020-10-03 12:53:51 +02:00
2020-10-03 12:53:51 +02:00
2020-10-03 12:53:51 +02:00
2020-10-03 12:53:51 +02:00
2020-10-09 11:53:21 +02:00
2020-10-03 12:53:51 +02:00
2020-10-03 12:53:51 +02:00
2020-10-03 12:53:51 +02:00
2020-10-03 12:53:51 +02:00
2020-08-18 07:51:05 -07:00
2020-08-31 19:13:30 +02:00
2020-10-01 15:28:14 +02:00
2020-10-14 19:10:02 -04:00
2020-10-23 11:15:19 +02:00
2020-10-02 09:38:24 -07:00
2020-09-27 09:37:10 -07:00
2020-10-02 09:38:24 -07:00
2020-10-03 12:53:51 +02:00
2020-10-02 09:38:24 -07:00
2020-10-24 20:23:27 +02:00
2020-09-21 14:26:42 +02:00
2020-09-09 20:12:45 +01:00
2020-08-19 12:49:11 +02:00
2020-10-02 09:38:24 -07:00
2020-10-02 09:38:24 -07:00
2020-10-24 20:23:27 +02:00
2020-09-21 14:26:42 +02:00
2020-11-01 06:28:38 -08:00
2020-10-31 11:41:53 +02:00
2020-10-17 09:48:54 -07:00
2020-10-01 15:28:14 +02:00
2020-10-24 20:23:27 +02:00
2020-10-20 13:20:48 +02:00
2020-11-03 21:48:23 +02:00
2020-10-24 20:23:27 +02:00
2020-11-03 02:04:22 +01:00
2020-10-02 09:38:24 -07:00
2020-09-17 11:13:54 +02:00
2020-10-01 15:28:15 +02:00
2020-10-02 09:38:24 -07:00
2020-10-02 09:38:24 -07:00
2020-10-01 20:53:27 +02:00
2020-10-02 09:38:24 -07:00
2020-09-21 14:26:42 +02:00
2020-10-02 09:38:24 -07:00
2020-10-02 09:38:24 -07:00
2020-10-01 15:28:14 +02:00
2020-10-02 09:38:24 -07:00
2020-10-24 20:23:27 +02:00
2020-10-01 15:28:15 +02:00
2020-10-24 15:50:16 +01:00
2020-10-24 13:22:55 +03:00
2020-10-27 01:39:19 +01:00
2020-10-16 15:27:43 +02:00
2020-09-21 14:26:42 +02:00
2020-10-27 08:24:56 -07:00
2020-08-04 20:15:56 -04:00
2020-10-01 15:28:15 +02:00
2020-09-21 14:26:42 +02:00

This directory contains source code for the parts of Emacs that are
written in Emacs Lisp.  *.el files are Emacs Lisp source, and the
corresponding *.elc files are byte-compiled versions.  Byte-compiled
files are architecture-independent.

The term subdirectory contains Lisp files that customize Emacs for
certain terminal types.  When Emacs starts, it checks the TERM
environment variable to get the terminal type and loads
'term/${TERM}.el' if it exists.

The other subdirectories hold Lisp packages grouped by their general
purpose.