]> git.ipfire.org Git - thirdparty/git.git/blobdiff - editor.c
Do not use VISUAL editor on dumb terminals
[thirdparty/git.git] / editor.c
index 941c0b2ab6deeaaaa346256b7c8080fd67c996b2..3f1375114c989c0d58dd3e2fd285ba149c4e70a2 100644 (file)
--- a/editor.c
+++ b/editor.c
@@ -4,19 +4,19 @@
 
 int launch_editor(const char *path, struct strbuf *buffer, const char *const *env)
 {
-       const char *editor, *terminal;
+       const char *editor = getenv("GIT_EDITOR");
+       const char *terminal = getenv("TERM");
+       int terminal_is_dumb = !terminal || !strcmp(terminal, "dumb");
 
-       editor = getenv("GIT_EDITOR");
        if (!editor && editor_program)
                editor = editor_program;
-       if (!editor)
+       if (!editor && !terminal_is_dumb)
                editor = getenv("VISUAL");
        if (!editor)
                editor = getenv("EDITOR");
 
-       terminal = getenv("TERM");
-       if (!editor && (!terminal || !strcmp(terminal, "dumb")))
-               return error("Terminal is dumb but no VISUAL nor EDITOR defined.");
+       if (!editor && terminal_is_dumb)
+               return error("terminal is dumb, but EDITOR unset");
 
        if (!editor)
                editor = "vi";