diff options
| author | Albert Cervin <albert@acervin.com> | 2024-05-12 22:55:43 +0200 |
|---|---|---|
| committer | Albert Cervin <albert@acervin.com> | 2024-05-12 22:55:43 +0200 |
| commit | 9a4e99b436efefa00277d592ff67798eb491e87a (patch) | |
| tree | 3603646adf972cd252772b7b2832ca72fcdcaa4b /src/dged/minibuffer.h | |
| parent | 1e7e71d151bac48f150b4edb4bfa3f1ac4e80f44 (diff) | |
| download | dged-9a4e99b436efefa00277d592ff67798eb491e87a.tar.gz dged-9a4e99b436efefa00277d592ff67798eb491e87a.tar.xz dged-9a4e99b436efefa00277d592ff67798eb491e87a.zip | |
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.
Diffstat (limited to 'src/dged/minibuffer.h')
| -rw-r--r-- | src/dged/minibuffer.h | 5 |
1 files changed, 3 insertions, 2 deletions
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. |
