comparison src/main.c @ 28303:9849df834f1d v8.2.4677

patch 8.2.4677: the Athena GUI support is outdated Commit: https://github.com/vim/vim/commit/0b962e5685edd41b55d5427b894797e725707639 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 3 18:02:37 2022 +0100 patch 8.2.4677: the Athena GUI support is outdated Problem: The Athena GUI support is outdated. Solution: Remove the Athena GUI code.
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Apr 2022 19:15:04 +0200
parents c99005ffa8c3
children e466fdbe0699
comparison
equal deleted inserted replaced
28302:d81a8f2db704 28303:9849df834f1d
3539 main_msg(_("--version\t\tPrint version information and exit")); 3539 main_msg(_("--version\t\tPrint version information and exit"));
3540 3540
3541 #ifdef FEAT_GUI_X11 3541 #ifdef FEAT_GUI_X11
3542 # ifdef FEAT_GUI_MOTIF 3542 # ifdef FEAT_GUI_MOTIF
3543 mch_msg(_("\nArguments recognised by gvim (Motif version):\n")); 3543 mch_msg(_("\nArguments recognised by gvim (Motif version):\n"));
3544 # else
3545 # ifdef FEAT_GUI_ATHENA
3546 # ifdef FEAT_GUI_NEXTAW
3547 mch_msg(_("\nArguments recognised by gvim (neXtaw version):\n"));
3548 # else
3549 mch_msg(_("\nArguments recognised by gvim (Athena version):\n"));
3550 # endif
3551 # endif
3552 # endif 3544 # endif
3553 main_msg(_("-display <display>\tRun Vim on <display>")); 3545 main_msg(_("-display <display>\tRun Vim on <display>"));
3554 main_msg(_("-iconic\t\tStart Vim iconified")); 3546 main_msg(_("-iconic\t\tStart Vim iconified"));
3555 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)")); 3547 main_msg(_("-background <color>\tUse <color> for the background (also: -bg)"));
3556 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)")); 3548 main_msg(_("-foreground <color>\tUse <color> for normal text (also: -fg)"));
3558 main_msg(_("-boldfont <font>\tUse <font> for bold text")); 3550 main_msg(_("-boldfont <font>\tUse <font> for bold text"));
3559 main_msg(_("-italicfont <font>\tUse <font> for italic text")); 3551 main_msg(_("-italicfont <font>\tUse <font> for italic text"));
3560 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)")); 3552 main_msg(_("-geometry <geom>\tUse <geom> for initial geometry (also: -geom)"));
3561 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)")); 3553 main_msg(_("-borderwidth <width>\tUse a border width of <width> (also: -bw)"));
3562 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)")); 3554 main_msg(_("-scrollbarwidth <width> Use a scrollbar width of <width> (also: -sw)"));
3563 # ifdef FEAT_GUI_ATHENA
3564 main_msg(_("-menuheight <height>\tUse a menu bar height of <height> (also: -mh)"));
3565 # endif
3566 main_msg(_("-reverse\t\tUse reverse video (also: -rv)")); 3555 main_msg(_("-reverse\t\tUse reverse video (also: -rv)"));
3567 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)")); 3556 main_msg(_("+reverse\t\tDon't use reverse video (also: +rv)"));
3568 main_msg(_("-xrm <resource>\tSet the specified resource")); 3557 main_msg(_("-xrm <resource>\tSet the specified resource"));
3569 #endif // FEAT_GUI_X11 3558 #endif // FEAT_GUI_X11
3570 #ifdef FEAT_GUI_GTK 3559 #ifdef FEAT_GUI_GTK