| int launch_editor(const char *path, struct strbuf *buffer, const char *const *env) |
| const char *editor, *terminal; |
| editor = getenv("GIT_EDITOR"); |
| if (!editor && editor_program) |
| editor = getenv("VISUAL"); |
| editor = getenv("EDITOR"); |
| terminal = getenv("TERM"); |
| if (!editor && (!terminal || !strcmp(terminal, "dumb"))) |
| return error("Terminal is dumb but no VISUAL nor EDITOR defined."); |
| if (strcmp(editor, ":")) { |
| size_t len = strlen(editor); |
| struct strbuf arg0 = STRBUF_INIT; |
| if (strcspn(editor, "$ \t'") != len) { |
| strbuf_addf(&arg0, "%s \"$@\"", editor); |
| failed = run_command_v_opt_cd_env(args, 0, NULL, env); |
| return error("There was a problem with the editor '%s'.", |
| if (strbuf_read_file(buffer, path, 0) < 0) |
| return error("could not read file '%s': %s", |