diff options
author | Eduardo Chappa <chappa@washington.edu> | 2021-04-06 09:33:46 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2021-04-06 09:33:46 -0600 |
commit | 4f13a7bcddc60430203fd545a3c584b3e9fc27aa (patch) | |
tree | 4b9f8b9bf34513f01e120c9158fa4c7ff67ebc53 /pico | |
parent | e1eb49d3e9cae587840ce5389854d2d1d79bbbed (diff) | |
download | alpine-4f13a7bcddc60430203fd545a3c584b3e9fc27aa.tar.xz |
* Use ‘alpine -F’ instead of ‘pine -F’ as the browser default pager, as this
project will not compile anything called pine anymore, and there is little
to know chance that someone still have pine in parallel of alpine.
Submitted by Étienne Deparis.
Diffstat (limited to 'pico')
-rw-r--r-- | pico/browse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pico/browse.c b/pico/browse.c index ca0f4657..2f203b48 100644 --- a/pico/browse.c +++ b/pico/browse.c @@ -133,7 +133,7 @@ static KEYMENU menu_browse[] = { /* * Default pager used by the stand-alone file browser. */ -#define BROWSER_PAGER ((gmode & MDFKEY) ? "pine -k -F" : "pine -F") +#define BROWSER_PAGER ((gmode & MDFKEY) ? "alpine -k -F" : "alpine -F") /* @@ -217,7 +217,7 @@ N_("~ ~? Display this help text."), N_("~ ~Q Quit Pilot."), " ", N_("~ ~V View the currently selected file or open the selected directory."), -N_("~ Note: Pilot invokes ~p~i~n~e ~-~F, or the program defined by the ~P~A~G~E~R"), +N_("~ Note: Pilot invokes ~a~l~p~i~n~e ~-~F, or the program defined by the ~P~A~G~E~R"), N_("~ environment variable, to view the file."), N_("~ ~L Launch an external application program."), " ", |