aboutsummaryrefslogtreecommitdiffstats
path: root/src/minibuf.c
Commit message (Collapse)AuthorAgeFilesLines
* (Vminibuffer_exit_hook): New variable.Karl Heuer1994-04-081-1/+13
| | | | (read_minibuf): Run hook when exiting minibuffer.
* (Fminibuffer_prompt_width): Undo previous change for negative values.Karl Heuer1994-04-071-4/+2
| | | | This function does not include hscroll positioning any more.
* (temp_echo_area_glyphs): Use PT, not point.Karl Heuer1994-04-061-1/+1
|
* (Fminibuffer_prompt_width): Allow for negative value.Karl Heuer1994-04-061-2/+4
|
* (do_completion): gcpro some things.Karl Heuer1994-04-051-4/+19
|
* (Fminibuffer_prompt, Fminibuffer_prompt_width): New funcs.Karl Heuer1994-03-301-0/+21
|
* (Vcompletion_regexp_list): New var.Richard M. Stallman1994-03-301-4/+42
| | | | | | (syms_of_minibuf): Set up Lisp var. (Ftry_completion, Fall_completions): Limit possible completions to strings matching those regexps.
* (read_minibuf): Return val via unbind_to.Richard M. Stallman1994-03-271-7/+40
| | | | (Fminibuffer_complete): Scroll the completion window in some cases.
* (read_minibuf): Use assignment instead of initialization.Karl Heuer1994-03-231-1/+2
|
* (read_minibuf): Don't redirect focus unless minibuf is on another frame.Karl Heuer1994-03-221-1/+2
|
* (read_minibuf): Disallow trailing junk.Karl Heuer1994-03-161-1/+11
|
* (read_minibuf): Make minibuffer frame visible when minibuffer activated.Karl Heuer1994-03-151-0/+5
|
* (get_minibuffer): Make name buffer large enough.Karl Heuer1994-03-071-1/+1
|
* (Fminibuffer_complete, Fminibuffer_complete_word): Doc fix.Karl Heuer1994-03-071-2/+4
|
* (temp_echo_area_glyphs): Use quit_char, not C-g.Karl Heuer1994-03-071-1/+3
|
* (read_minibuf): Don't call Vrun_hooks if it is nil.Richard M. Stallman1994-03-051-1/+2
|
* (Fdisplay_completion_list): Restore original bufferRichard M. Stallman1994-03-021-3/+7
| | | | before running completion-setup-hook.
* (read_from_minibuffer): Rename arg initial_input to initial_contents.Richard M. Stallman1993-12-301-9/+9
|
* (Fall_completions): Allow completions that start with spaceRichard M. Stallman1993-12-301-5/+8
| | | | if the input starts with space.
* (minibuffer_auto_raise): Really define it.Richard M. Stallman1993-12-231-1/+11
| | | | | | (minibuffer_auto_raise): New variable. (syms_of_minibuf): Set up Lisp var. (read_minibuf): Maybe raise the minibuffer's frame.
* (read_minibuf): History list always gets strings,Richard M. Stallman1993-11-191-9/+12
| | | | not Lisp objects made by read.
* (Fminibuffer_complete_word): GCPRO1 `completion' during calls toBrian Fox1993-10-051-23/+43
| | | | | | | | | Ftry_completion. (read_minibuf): Rewrite change of Sep 14. Save the return value on the history list provided in the form that the value is returned, iff the value is not equal to the front of the history list. (Fread_no_blanks_input): Change DEFUN to allow 2nd arg to be optional. The code was already written correctly.
* (read_minibuf): Don't add history item if it isBrian Fox1993-09-221-1/+3
| | | | string-equal to the most recent history item.
* (Fminibuffer_complete_word): Pass new arg to insert_from_string*.Richard M. Stallman1993-09-141-2/+2
|
* Include <config.h> instead of "config.h".Roland McGrath1993-09-101-1/+1
|
* (Qread_file_name_internal): New var.Richard M. Stallman1993-08-151-0/+18
| | | | | | (syms_of_minibuf): Set it up and protect it. (Fminibuffer_complete_word): When completing a file name, expand envvar references.
* (Qminibuffer_setup_hook, Vminibuffer_setup_hook): New vars.Richard M. Stallman1993-08-111-0/+17
| | | | | (syms_of_minibuf): Set them up. (read_minibuffer): Run the hook, if not empty.
* (Fdisplay_completion_list): Run completion-setup-hook.Richard M. Stallman1993-07-151-1/+5
|
* * minibuf.c (Fread_minibuffer): Add missing semicolon afterJim Blandy1993-06-191-1/+1
| | | | CHECK_STRING macro.
* (read_minibuf): Set and use mini_frame only if MULTI_FRAME.Richard M. Stallman1993-06-121-6/+7
|
* Updated copyright years.Jim Blandy1993-05-221-1/+1
|
* * minibuf.c (Fdisplay_completion_list): Pass the proper number ofJim Blandy1993-02-221-1/+1
| | | | | arguments to Flength. * xmenu.c (list_of_items): Same.
* JimB's changes since January 18thJim Blandy1993-01-261-2/+2
|
* * minibuf.c (temp_echo_area_glyphs): Change reference toJim Blandy1992-11-161-2/+31
| | | | | | | | unread_command_char to unread_command_event. * minibuf.c (read_minibuf): If get_minibuffer gives the new minibuffer a nil default directory, find another buffer with a better default directory and use that one's instead.
* * minibuf.c (read_minibuf): Protect call to Fredirect_frame_focusJim Blandy1992-11-071-0/+2
| | | | with a #ifdef MULTI_FRAME.
* * minibuf.c (read_minibuf): Use EQ to compare, not ==.Jim Blandy1992-10-311-2/+2
| | | | | (temp_echo_area_glyphs): Use XFASTINT to assign to unread_command_char.
* * minibuf.c (temp_echo_area_glyphs): Don't clear echo_area_glyphsJim Blandy1992-10-191-7/+2
| | | | and previous_echo_glyphs; let message do that work.
* * minibuf.c (read_minibuf): Don't bother to save the currentJim Blandy1992-10-031-22/+1
| | | | | | frame's focus, and have read_minibuf_unwind restore it; saving and restoring the window configurations will take care of that. (read_minibuf_unwind): Don't worry about restoring the frame's focus.
* Thu Sep 17 15:51:18 1992 Jim Blandy ([email protected])Jim Blandy1992-09-221-0/+5
| | | | * minibuf.c (get_minibuffer): Enable undo in minibuffers.
* * minibuf.c (Fread_from_minibuffer): Put this function's docJim Blandy1992-08-191-2/+18
| | | | | | string into a comment; it's too long for the PCC preprocessor. Rah. (Fcompleting_read): Same deal.
* * minibuf.c (Fcompleting_read): Stop subtracting one from theJim Blandy1992-08-121-1/+1
| | | | | starting position, so this function lives up to its doc string, which I think specifies an okay way to work.
* entered into RCSRichard M. Stallman1992-07-241-5/+5
|
* *** empty log message ***Richard M. Stallman1992-07-241-20/+143
|
* *** empty log message ***Jim Blandy1992-07-131-21/+21
|
* *** empty log message ***Joseph Arceneaux1992-07-021-0/+1
|
* *** empty log message ***Richard M. Stallman1992-07-021-10/+43
|
* *** empty log message ***Jim Blandy1992-06-301-1/+1
|
* *** empty log message ***Richard M. Stallman1992-06-041-1/+1
|
* *** empty log message ***Jim Blandy1992-05-181-3/+3
|
* *** empty log message ***Jim Blandy1992-01-141-41/+37
|