X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/c703902741e0f7ce55f87e48ef0d00901195f1bc..94187a80bd60baab4b9c4b949ad820d730578123:/sbr/geteditor.c diff --git a/sbr/geteditor.c b/sbr/geteditor.c index 6c285da9..2fbe1f56 100644 --- a/sbr/geteditor.c +++ b/sbr/geteditor.c @@ -1,6 +1,4 @@ - -/* - * geteditor.c -- Determine the default editor to use +/* geteditor.c -- Determine the default editor to use * * This code is Copyright (c) 2013, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for @@ -22,8 +20,8 @@ get_default_editor(void) if (!(str = context_find("editor")) && !(str = getenv("VISUAL")) && !(str = getenv("EDITOR"))) { - str = DEFAULT_EDITOR; + str = "vi"; } - return (default_editor = str); + return default_editor = str; }