diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-02-11 13:44:07 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-02-11 13:44:07 -0800 |
commit | c985aaf87909ab7f8194b3cfed3a744cbff78fe9 (patch) | |
tree | 37416fd6c423c75204b505e7a71ca1812a3a1f29 /prompt.c | |
parent | Merge branch 'jc/push-to-checkout' (diff) | |
parent | shallow.c: make check_shallow_file_for_update() static (diff) | |
download | tgif-c985aaf87909ab7f8194b3cfed3a744cbff78fe9.tar.xz |
Merge branch 'jc/unused-symbols'
Mark file-local symbols as "static", and drop functions that nobody
uses.
* jc/unused-symbols:
shallow.c: make check_shallow_file_for_update() static
remote.c: make clear_cas_option() static
urlmatch.c: make match_urls() static
revision.c: make save_parents() and free_saved_parents() static
line-log.c: make line_log_data_init() static
pack-bitmap.c: make pack_bitmap_filename() static
prompt.c: remove git_getpass() nobody uses
http.c: make finish_active_slot() and handle_curl_result() static
Diffstat (limited to 'prompt.c')
-rw-r--r-- | prompt.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -73,8 +73,3 @@ char *git_prompt(const char *prompt, int flags) } return r; } - -char *git_getpass(const char *prompt) -{ - return git_prompt(prompt, PROMPT_ASKPASS); -} |