xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 3a566240eb46d13f1eafc84606b0eff9b6b8eaa2

Add missing `static` keyword in engine/parsing.c
Doesn't change semantics, just adding for consistency.
Author: xaizek
Author date (UTC): 2025-07-05 18:00
Committer name: xaizek
Committer date (UTC): 2025-07-06 09:38
Parent(s): 80b10d71ed4b3b72ba58815d2efe6ec03d6ff6de
Signing key: 99DC5E4DB05F6BE2
Tree: 9113d6a41ed650278d560795fa8cfd1c3fa6e211
File Lines added Lines deleted
src/engine/parsing.c 1 1
File src/engine/parsing.c changed (mode: 100644) (index f19e2e394..9963de7bc)
... ... parse_doubly_quoted_string(parse_context_t *ctx, const char **in)
1076 1076 /* dqchar ::= [^"\] | '\' dqesc /* dqchar ::= [^"\] | '\' dqesc
1077 1077 * dqesc ::= '\\' | '\0' | '\b' | '\e' | '\n' | '\r' | '\t' | dqbn * dqesc ::= '\\' | '\0' | '\b' | '\e' | '\n' | '\r' | '\t' | dqbn
1078 1078 * Returns non-zero if there are more characters in the string. */ * Returns non-zero if there are more characters in the string. */
1079 int
1079 static int
1080 1080 parse_doubly_quoted_char(parse_context_t *ctx, const char **in, sbuffer *sbuf) parse_doubly_quoted_char(parse_context_t *ctx, const char **in, sbuffer *sbuf)
1081 1081 { {
1082 1082 /* /*
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master