blob: 1d24021fc767c25cc0ca1d0625d9479649e852cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
Remove mention of removed help commands.
From upstream, part of the following commit:
http://git.savannah.gnu.org/gitweb/?p=zile.git;a=commitdiff_plain;h=6c3db79604ec1c30f150d3af7a6087b165266dd4
--- a/src/main.c
+++ b/src/main.c
@@ -90,21 +90,17 @@ static char about_splash_str[] = "\
" ZILE_COPYRIGHT_STRING "\n\
\n\
Type `C-x C-c' to exit " PACKAGE_NAME ".\n\
-Type `C-h h' for help; `C-x u; to undo changes.\n\
-Type `C-h C-d' for information on getting the latest version.\n\
-Type `C-h t' for a tutorial on using " PACKAGE_NAME ".\n\
-Type `C-h s' for a sample configuration file.\n\
+Type `C-x u; to undo changes.\n\
Type `C-g' at any time to quit the current operation.\n\
\n\
`C-x' means hold the CTRL key while typing the character `x'.\n\
`M-x' means hold the META or ALT key down while typing `x'.\n\
If there is no META or ALT key, instead press and release\n\
the ESC key and then type `x'.\n\
-Combinations like `C-h h' mean first press `C-h', then `h'.\n\
+Combinations like `C-x u' mean first press `C-x', then `u'.\n\
";
-static char about_minibuf_str[] =
- "Welcome to " PACKAGE_NAME "! For help type `C-h h'";
+static char about_minibuf_str[] = "Welcome to " PACKAGE_NAME "!";
static void
about_screen (void)
|