diff options
author | Andreas Schwab <schwab@suse.de> | 1997-11-21 13:50:47 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1997-11-21 13:50:47 +0000 |
commit | 013e21c90230b75bdd996aa8a28534861c92ef87 (patch) | |
tree | b933c679f4a1e4ec4d8451f716f07941d41b4b04 /src/minibuf.c | |
parent | ed0972dc4cdbea3e57188353c6c2569c7695b98d (diff) | |
download | emacs-013e21c90230b75bdd996aa8a28534861c92ef87.tar.gz |
(read_minibuf_unwind): Fix return type and return nil.
(temp_echo_area_glyphs): Define as returning nothing.
(init_minibuf_once): Likewise.
(syms_of_minibuf): Likewise.
(keys_of_minibuf): Likewise.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r-- | src/minibuf.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index c458dce2f4f..b8c9f503af3 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -180,7 +180,7 @@ without invoking the usual minibuffer commands.") /* Actual minibuffer invocation. */ -static void read_minibuf_unwind (); +static Lisp_Object read_minibuf_unwind (); Lisp_Object get_minibuffer (); static Lisp_Object read_minibuf (); @@ -525,7 +525,7 @@ get_minibuffer (depth) /* This function is called on exiting minibuffer, whether normally or not, and it restores the current window, buffer, etc. */ -static void +static Lisp_Object read_minibuf_unwind (data) Lisp_Object data; { @@ -584,6 +584,8 @@ read_minibuf_unwind (data) windows_or_buffers_changed++; XSETFASTINT (XWINDOW (window)->last_modified, 0); XSETFASTINT (XWINDOW (window)->last_overlay_modified, 0); + + return Qnil; } @@ -1881,6 +1883,7 @@ DEFUN ("minibuffer-prompt-width", Fminibuffer_prompt_width, that has no possible completions, and other quick, unobtrusive messages. */ +void temp_echo_area_glyphs (m) char *m; { @@ -1919,12 +1922,14 @@ or until the next input event arrives, whichever comes first.") return Qnil; } +void init_minibuf_once () { Vminibuffer_list = Qnil; staticpro (&Vminibuffer_list); } +void syms_of_minibuf () { minibuf_level = 0; @@ -2088,6 +2093,7 @@ with completion; they always discard text properties."); defsubr (&Sminibuffer_message); } +void keys_of_minibuf () { initial_define_key (Vminibuffer_local_map, Ctl ('g'), |