X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/0cf508d41a7198d5f4f399de72f31468f5417892..8f802697c8d9c4fc52e4d0ce4facf643358aac1a:/sbr/geteditor.c?ds=sidebyside diff --git a/sbr/geteditor.c b/sbr/geteditor.c index 6c285da9..3b472ec1 100644 --- a/sbr/geteditor.c +++ b/sbr/geteditor.c @@ -1,14 +1,14 @@ - -/* - * 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 * complete copyright information. */ -#include -#include +#include "h/mh.h" +#include "geteditor.h" +#include "context_find.h" +#include "h/utils.h" static char *default_editor = NULL; @@ -22,8 +22,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; }