Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-11-23 05:40:11 +0300
committerJunio C Hamano <gitster@pobox.com>2021-11-23 05:40:11 +0300
commit4150a1677bef6e1e42fd089e784a937f57a5c44b (patch)
treed52c82fecf20af902770b7beecbf2817d6535237 /editor.c
parent1bf2673685990e0c9a5040d5289de3e7a5f9c96e (diff)
parente3f7e01b50be94bfe6cf35b2f1e01ab75804d8d8 (diff)
Merge branch 'jc/save-restore-terminal-revert'
Regression fix for 2.34 * jc/save-restore-terminal-revert: Revert "editor: save and reset terminal after calling EDITOR"
Diffstat (limited to 'editor.c')
-rw-r--r--editor.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/editor.c b/editor.c
index 674309eed8..fdd3eeafa9 100644
--- a/editor.c
+++ b/editor.c
@@ -3,7 +3,6 @@
#include "strbuf.h"
#include "run-command.h"
#include "sigchain.h"
-#include "compat/terminal.h"
#ifndef DEFAULT_EDITOR
#define DEFAULT_EDITOR "vi"
@@ -51,8 +50,6 @@ const char *git_sequence_editor(void)
static int launch_specified_editor(const char *editor, const char *path,
struct strbuf *buffer, const char *const *env)
{
- int term_fail;
-
if (!editor)
return error("Terminal is dumb, but EDITOR unset");
@@ -86,10 +83,7 @@ static int launch_specified_editor(const char *editor, const char *path,
p.env = env;
p.use_shell = 1;
p.trace2_child_class = "editor";
- term_fail = save_term(1);
if (start_command(&p) < 0) {
- if (!term_fail)
- restore_term();
strbuf_release(&realpath);
return error("unable to start editor '%s'", editor);
}
@@ -97,8 +91,6 @@ static int launch_specified_editor(const char *editor, const char *path,
sigchain_push(SIGINT, SIG_IGN);
sigchain_push(SIGQUIT, SIG_IGN);
ret = finish_command(&p);
- if (!term_fail)
- restore_term();
strbuf_release(&realpath);
sig = ret - 128;
sigchain_pop(SIGINT);