From d40a82b4d33c5156b71913afb25688cff788caae Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 18 Aug 2018 14:48:46 -0700 Subject: [PATCH] Mark reader.cpp jump as static --- src/reader.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/reader.cpp b/src/reader.cpp index d7902eac2..53d9f3a9f 100644 --- a/src/reader.cpp +++ b/src/reader.cpp @@ -436,7 +436,8 @@ static volatile sig_atomic_t interrupted = 0; // Prototypes for a bunch of functions defined later on. static bool is_backslashed(const wcstring &str, size_t pos); static wchar_t unescaped_quote(const wcstring &str, size_t pos); -bool jump(jump_direction_t dir, jump_precision_t precision, editable_line_t *el, wchar_t target); +static bool jump(jump_direction_t dir, jump_precision_t precision, editable_line_t *el, + wchar_t target); /// Mode on startup, which we restore on exit. static struct termios terminal_mode_on_startup;