From 9a4e99b436efefa00277d592ff67798eb491e87a Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Sun, 12 May 2024 22:55:43 +0200 Subject: Improve API docs and configure system There is now a super minimalistic configure script that automatically detects the event system (epoll/kqueue) and generates a config.h and a config.mk. --- src/dged/minibuffer.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/dged/minibuffer.h') diff --git a/src/dged/minibuffer.h b/src/dged/minibuffer.h index 3e94f8c..6ac69c1 100644 --- a/src/dged/minibuffer.h +++ b/src/dged/minibuffer.h @@ -14,7 +14,8 @@ struct keymap; * * Note that the minibuffer is a global instance and this function will do * nothing if called more than once. - * @param buffer underlying buffer to use for text IO in the minibuffer. + * @param buffer Underlying buffer to use for text IO in the minibuffer. + * @param buffers Buffer list used to create and store messages buffer. */ void minibuffer_init(struct buffer *buffer, struct buffers *buffers); @@ -40,7 +41,7 @@ void message(const char *fmt, ...); void minibuffer_echo(const char *fmt, ...); /** - * Echo a message to the minibuffer that disappears after @ref timeout. + * Echo a message to the minibuffer that disappears after @p timeout. * * @param timeout The timeout in seconds after which the message should * disappear. -- cgit v1.2.3