mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-03 06:41:14 -03:00
Additional warning fixes and migration from int to size_t or long where appropriate
This commit is contained in:
4
reader.h
4
reader.h
@@ -107,9 +107,9 @@ void reader_set_buffer( const wcstring &b, size_t p );
|
||||
|
||||
/**
|
||||
Get the current cursor position in the command line. If interactive
|
||||
mode is uninitialized, return -1.
|
||||
mode is uninitialized, return (size_t)(-1).
|
||||
*/
|
||||
int reader_get_cursor_pos();
|
||||
size_t reader_get_cursor_pos();
|
||||
|
||||
/**
|
||||
Return the value of the interrupted flag, which is set by the sigint
|
||||
|
||||
Reference in New Issue
Block a user