Merge branch 'ak/typofix-2.46-maint'
Typofix. * ak/typofix-2.46-maint: upload-pack: fix a typo sideband: fix a typo setup: fix a typo run-command: fix a typo revision: fix a typo refs: fix typos rebase: fix a typo read-cache-ll: fix a typo pretty: fix a typo object-file: fix a typo merge-ort: fix typos merge-ll: fix a typo http: fix a typo gpg-interface: fix a typo git-p4: fix typos git-instaweb: fix a typo fsmonitor-settings: fix a typo diffcore-rename: fix typos config.mak.dev: fix a typomaint
commit
78ce6660bb
|
@ -69,7 +69,7 @@ DEVELOPER_CFLAGS += -Wno-missing-braces
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Old versions of clang complain about initializaing a
|
# Old versions of clang complain about initializing a
|
||||||
# struct-within-a-struct using just "{0}" rather than "{{0}}". This
|
# struct-within-a-struct using just "{0}" rather than "{{0}}". This
|
||||||
# error is considered a false-positive and not worth fixing, because
|
# error is considered a false-positive and not worth fixing, because
|
||||||
# new clang versions do not, so just disable it.
|
# new clang versions do not, so just disable it.
|
||||||
|
|
|
@ -933,7 +933,7 @@ static int find_basename_matches(struct diff_options *options,
|
||||||
* spend more cycles to find similarities between files, so it may
|
* spend more cycles to find similarities between files, so it may
|
||||||
* be less likely that this heuristic is wanted. If someone is
|
* be less likely that this heuristic is wanted. If someone is
|
||||||
* doing break detection, that means they do not want filename
|
* doing break detection, that means they do not want filename
|
||||||
* similarity to imply any form of content similiarity, and thus
|
* similarity to imply any form of content similarity, and thus
|
||||||
* this heuristic would definitely be incompatible.
|
* this heuristic would definitely be incompatible.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1534,7 +1534,7 @@ void diffcore_rename_extended(struct diff_options *options,
|
||||||
* - remove ones not found in relevant_sources
|
* - remove ones not found in relevant_sources
|
||||||
* and
|
* and
|
||||||
* - remove ones in relevant_sources which are needed only
|
* - remove ones in relevant_sources which are needed only
|
||||||
* for directory renames IF no ancestory directory
|
* for directory renames IF no ancestry directory
|
||||||
* actually needs to know any more individual path
|
* actually needs to know any more individual path
|
||||||
* renames under them
|
* renames under them
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
#include "fsmonitor-path-utils.h"
|
#include "fsmonitor-path-utils.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We keep this structure defintion private and have getters
|
* We keep this structure definition private and have getters
|
||||||
* for all fields so that we can lazy load it as needed.
|
* for all fields so that we can lazy load it as needed.
|
||||||
*/
|
*/
|
||||||
struct fsmonitor_settings {
|
struct fsmonitor_settings {
|
||||||
|
|
|
@ -612,7 +612,7 @@ python_conf() {
|
||||||
ln -sf "$root/static" "$fqgitdir/gitweb/$httpd_only/"
|
ln -sf "$root/static" "$fqgitdir/gitweb/$httpd_only/"
|
||||||
|
|
||||||
# generate a standalone 'python http.server' script in $fqgitdir/gitweb
|
# generate a standalone 'python http.server' script in $fqgitdir/gitweb
|
||||||
# This asumes that python is in user's $PATH
|
# This assumes that python is in user's $PATH
|
||||||
# This script is Python 2 and 3 compatible
|
# This script is Python 2 and 3 compatible
|
||||||
cat > "$fqgitdir/gitweb/gitweb.py" <<EOF
|
cat > "$fqgitdir/gitweb/gitweb.py" <<EOF
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
|
@ -54,7 +54,7 @@ import time
|
||||||
import zipfile
|
import zipfile
|
||||||
import zlib
|
import zlib
|
||||||
|
|
||||||
# On python2.7 where raw_input() and input() are both availble,
|
# On python2.7 where raw_input() and input() are both available,
|
||||||
# we want raw_input's semantics, but aliased to input for python3
|
# we want raw_input's semantics, but aliased to input for python3
|
||||||
# compatibility
|
# compatibility
|
||||||
# support basestring in python3
|
# support basestring in python3
|
||||||
|
@ -1804,7 +1804,7 @@ class P4Submit(Command, P4UserMap):
|
||||||
status from the script will abort the process.
|
status from the script will abort the process.
|
||||||
|
|
||||||
The purpose of the hook is to edit the message file in place, and it is not
|
The purpose of the hook is to edit the message file in place, and it is not
|
||||||
supressed by the `--no-verify` option. This hook is called even if
|
suppressed by the `--no-verify` option. This hook is called even if
|
||||||
`--prepare-p4-only` is set.
|
`--prepare-p4-only` is set.
|
||||||
|
|
||||||
The `p4-changelist` hook is executed after the changelist message has been
|
The `p4-changelist` hook is executed after the changelist message has been
|
||||||
|
|
|
@ -400,7 +400,7 @@ static void parse_ssh_output(struct signature_check *sigc)
|
||||||
* Note that "PRINCIPAL" can contain whitespace, "RSA" and
|
* Note that "PRINCIPAL" can contain whitespace, "RSA" and
|
||||||
* "SHA256" part could be a different token that names of
|
* "SHA256" part could be a different token that names of
|
||||||
* the algorithms used, and "FINGERPRINT" is a hexadecimal
|
* the algorithms used, and "FINGERPRINT" is a hexadecimal
|
||||||
* string. By finding the last occurence of " with ", we can
|
* string. By finding the last occurrence of " with ", we can
|
||||||
* reliably parse out the PRINCIPAL.
|
* reliably parse out the PRINCIPAL.
|
||||||
*/
|
*/
|
||||||
sigc->result = 'B';
|
sigc->result = 'B';
|
||||||
|
|
2
http.c
2
http.c
|
@ -1707,7 +1707,7 @@ void run_active_slot(struct active_request_slot *slot)
|
||||||
* The value of slot->finished we set before the loop was used
|
* The value of slot->finished we set before the loop was used
|
||||||
* to set our "finished" variable when our request completed.
|
* to set our "finished" variable when our request completed.
|
||||||
*
|
*
|
||||||
* 1. The slot may not have been reused for another requst
|
* 1. The slot may not have been reused for another request
|
||||||
* yet, in which case it still has &finished.
|
* yet, in which case it still has &finished.
|
||||||
*
|
*
|
||||||
* 2. The slot may already be in-use to serve another request,
|
* 2. The slot may already be in-use to serve another request,
|
||||||
|
|
|
@ -334,7 +334,7 @@ static int read_merge_config(const char *var, const char *value,
|
||||||
* %X - the revision for our version
|
* %X - the revision for our version
|
||||||
* %Y - the revision for their version
|
* %Y - the revision for their version
|
||||||
*
|
*
|
||||||
* If the file is not named indentically in all versions, then each
|
* If the file is not named identically in all versions, then each
|
||||||
* revision is joined with the corresponding path, separated by a colon.
|
* revision is joined with the corresponding path, separated by a colon.
|
||||||
* The external merge driver should write the results in the
|
* The external merge driver should write the results in the
|
||||||
* file named by %A, and signal that it has done with zero exit
|
* file named by %A, and signal that it has done with zero exit
|
||||||
|
|
|
@ -1147,7 +1147,7 @@ static void collect_rename_info(struct merge_options *opt,
|
||||||
* Update dir_rename_mask (determines ignore-rename-source validity)
|
* Update dir_rename_mask (determines ignore-rename-source validity)
|
||||||
*
|
*
|
||||||
* dir_rename_mask helps us keep track of when directory rename
|
* dir_rename_mask helps us keep track of when directory rename
|
||||||
* detection may be relevant. Basically, whenver a directory is
|
* detection may be relevant. Basically, whenever a directory is
|
||||||
* removed on one side of history, and a file is added to that
|
* removed on one side of history, and a file is added to that
|
||||||
* directory on the other side of history, directory rename
|
* directory on the other side of history, directory rename
|
||||||
* detection is relevant (meaning we have to detect renames for all
|
* detection is relevant (meaning we have to detect renames for all
|
||||||
|
@ -3837,7 +3837,7 @@ static int write_completed_directory(struct merge_options *opt,
|
||||||
* src/moduleB 2
|
* src/moduleB 2
|
||||||
*
|
*
|
||||||
* which is used to know that xtract.c & token.txt are from the
|
* which is used to know that xtract.c & token.txt are from the
|
||||||
* toplevel dirctory, while umm.c & stuff.h & baz.c are from the
|
* toplevel directory, while umm.c & stuff.h & baz.c are from the
|
||||||
* src/moduleB directory. Again, following the example above,
|
* src/moduleB directory. Again, following the example above,
|
||||||
* once we need to process src/moduleB, then info->offsets is
|
* once we need to process src/moduleB, then info->offsets is
|
||||||
* updated to
|
* updated to
|
||||||
|
|
|
@ -2308,7 +2308,7 @@ int stream_loose_object(struct input_stream *in_stream, size_t len,
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Common steps for write_loose_object and stream_loose_object to
|
* Common steps for write_loose_object and stream_loose_object to
|
||||||
* end writing loose oject:
|
* end writing loose object:
|
||||||
*
|
*
|
||||||
* - End the compression of zlib stream.
|
* - End the compression of zlib stream.
|
||||||
* - Get the calculated oid.
|
* - Get the calculated oid.
|
||||||
|
|
2
pretty.c
2
pretty.c
|
@ -2205,7 +2205,7 @@ static void strbuf_add_tabexpand(struct strbuf *sb, struct grep_opt *opt,
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* pp_handle_indent() prints out the intendation, and
|
* pp_handle_indent() prints out the indentation, and
|
||||||
* the whole line (without the final newline), after
|
* the whole line (without the final newline), after
|
||||||
* de-tabifying.
|
* de-tabifying.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -151,7 +151,7 @@ enum sparse_index_mode {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The index has already been collapsed to sparse directories
|
* The index has already been collapsed to sparse directories
|
||||||
* whereever possible.
|
* wherever possible.
|
||||||
*/
|
*/
|
||||||
INDEX_COLLAPSED,
|
INDEX_COLLAPSED,
|
||||||
|
|
||||||
|
|
2
rebase.c
2
rebase.c
|
@ -11,7 +11,7 @@
|
||||||
* The callers that care if (any) rebase is requested should say
|
* The callers that care if (any) rebase is requested should say
|
||||||
* if (REBASE_TRUE <= rebase_parse_value(string))
|
* if (REBASE_TRUE <= rebase_parse_value(string))
|
||||||
*
|
*
|
||||||
* The callers that want to differenciate an unrecognised value and
|
* The callers that want to differentiate an unrecognised value and
|
||||||
* false can do so by treating _INVALID and _FALSE differently.
|
* false can do so by treating _INVALID and _FALSE differently.
|
||||||
*/
|
*/
|
||||||
enum rebase_type rebase_parse_value(const char *value)
|
enum rebase_type rebase_parse_value(const char *value)
|
||||||
|
|
6
refs.h
6
refs.h
|
@ -17,7 +17,7 @@ enum ref_storage_format ref_storage_format_by_name(const char *name);
|
||||||
const char *ref_storage_format_to_name(enum ref_storage_format ref_storage_format);
|
const char *ref_storage_format_to_name(enum ref_storage_format ref_storage_format);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Resolve a reference, recursively following symbolic refererences.
|
* Resolve a reference, recursively following symbolic references.
|
||||||
*
|
*
|
||||||
* Return the name of the non-symbolic reference that ultimately pointed
|
* Return the name of the non-symbolic reference that ultimately pointed
|
||||||
* at the resolved object name. The return value, if not NULL, is a
|
* at the resolved object name. The return value, if not NULL, is a
|
||||||
|
@ -490,7 +490,7 @@ int refs_delete_reflog(struct ref_store *refs, const char *refname);
|
||||||
* from UTC. Its absolute value is formed by multiplying the hour
|
* from UTC. Its absolute value is formed by multiplying the hour
|
||||||
* part by 100 and adding the minute part. For example, 1 hour ahead
|
* part by 100 and adding the minute part. For example, 1 hour ahead
|
||||||
* of UTC, CET == "+0100", is represented as positive one hundred (not
|
* of UTC, CET == "+0100", is represented as positive one hundred (not
|
||||||
* postiive sixty).
|
* positive sixty).
|
||||||
*
|
*
|
||||||
* The msg parameter is a single complete line; a reflog message given
|
* The msg parameter is a single complete line; a reflog message given
|
||||||
* to refs_delete_ref, refs_update_ref, etc. is returned to the
|
* to refs_delete_ref, refs_update_ref, etc. is returned to the
|
||||||
|
@ -997,7 +997,7 @@ struct ref_store *get_worktree_ref_store(const struct worktree *wt);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some of the names specified by refs have special meaning to Git.
|
* Some of the names specified by refs have special meaning to Git.
|
||||||
* Organize these namespaces in a comon 'ref_namespace' array for
|
* Organize these namespaces in a common 'ref_namespace' array for
|
||||||
* reference from multiple places in the codebase.
|
* reference from multiple places in the codebase.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -549,7 +549,7 @@ int rewrite_parents(struct rev_info *revs,
|
||||||
* The log machinery saves the original parent list so that
|
* The log machinery saves the original parent list so that
|
||||||
* get_saved_parents() can later tell what the real parents of the
|
* get_saved_parents() can later tell what the real parents of the
|
||||||
* commits are, when commit->parents has been modified by history
|
* commits are, when commit->parents has been modified by history
|
||||||
* simpification.
|
* simplification.
|
||||||
*
|
*
|
||||||
* get_saved_parents() will transparently return commit->parents if
|
* get_saved_parents() will transparently return commit->parents if
|
||||||
* history simplification is off.
|
* history simplification is off.
|
||||||
|
|
|
@ -535,7 +535,7 @@ enum start_bg_result {
|
||||||
/* timeout expired waiting for child to become "ready" */
|
/* timeout expired waiting for child to become "ready" */
|
||||||
SBGR_TIMEOUT,
|
SBGR_TIMEOUT,
|
||||||
|
|
||||||
/* child process exited or was signalled before becomming "ready" */
|
/* child process exited or was signalled before becoming "ready" */
|
||||||
SBGR_DIED,
|
SBGR_DIED,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
2
setup.c
2
setup.c
|
@ -524,7 +524,7 @@ static void setup_original_cwd(void)
|
||||||
* directory we inherited from our parent process, which is a
|
* directory we inherited from our parent process, which is a
|
||||||
* directory we want to avoid removing.
|
* directory we want to avoid removing.
|
||||||
*
|
*
|
||||||
* For convience, we would like to have the path relative to the
|
* For convenience, we would like to have the path relative to the
|
||||||
* worktree instead of an absolute path.
|
* worktree instead of an absolute path.
|
||||||
*
|
*
|
||||||
* Yes, startup_info->original_cwd is usually the same as 'prefix',
|
* Yes, startup_info->original_cwd is usually the same as 'prefix',
|
||||||
|
|
|
@ -191,7 +191,7 @@ int demultiplex_sideband(const char *me, int status,
|
||||||
int linelen = brk - b;
|
int linelen = brk - b;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* For message accross packet boundary, there would have
|
* For message across packet boundary, there would have
|
||||||
* a nonempty "scratch" buffer from last call of this
|
* a nonempty "scratch" buffer from last call of this
|
||||||
* function, and there may have a leading CR/LF in "buf".
|
* function, and there may have a leading CR/LF in "buf".
|
||||||
* For this case we should add a clear-to-eol suffix to
|
* For this case we should add a clear-to-eol suffix to
|
||||||
|
|
|
@ -1812,7 +1812,7 @@ int upload_pack_v2(struct repository *r, struct packet_reader *request)
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* Request had 'want's but no 'have's so we can
|
* Request had 'want's but no 'have's so we can
|
||||||
* immedietly go to construct and send a pack.
|
* immediately go to construct and send a pack.
|
||||||
*/
|
*/
|
||||||
state = FETCH_SEND_PACK;
|
state = FETCH_SEND_PACK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue