Mercurial > hg > octave-nkf
comparison scripts/help/__additional_help_message__.m @ 8575:f134925a1cfa
m-file implementation of help system
author | Soren Hauberg <soren@hauberg.org> |
---|---|
date | Thu, 22 Jan 2009 18:22:52 -0500 |
parents | |
children | e0fbf17a17bb |
comparison
equal
deleted
inserted
replaced
8574:83b8c739d626 | 8575:f134925a1cfa |
---|---|
1 ## Copyright (C) 2009 Søren Hauberg | |
2 ## | |
3 ## This program is free software; you can redistribute it and/or modify it | |
4 ## under the terms of the GNU General Public License as published by | |
5 ## the Free Software Foundation; either version 3 of the License, or (at | |
6 ## your option) any later version. | |
7 ## | |
8 ## This program is distributed in the hope that it will be useful, but | |
9 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
11 ## General Public License for more details. | |
12 ## | |
13 ## You should have received a copy of the GNU General Public License | |
14 ## along with this program; see the file COPYING. If not, see | |
15 ## <http://www.gnu.org/licenses/>. | |
16 | |
17 ## -*- texinfo -*- | |
18 ## @deftypefn {Function File} __additional_help_message__ () | |
19 ## Return additional help message. | |
20 ## | |
21 ## This is an internal function and should not be used directly. | |
22 ## @seealso{suppress_verbose_help_message} | |
23 ## @end deftypefn | |
24 | |
25 function msg = __additional_help_message__ () | |
26 | |
27 if (suppress_verbose_help_message ()) | |
28 msg = ""; | |
29 else | |
30 msg = "\ | |
31 Additional help for built-in functions and operators is\n\ | |
32 available in the on-line version of the manual. Use the command\n\ | |
33 `doc <topic>' to search the manual index.\n\ | |
34 \n\ | |
35 Help and information about Octave is also available on the WWW\n\ | |
36 at http://www.octave.org and via the help@octave.org\n\ | |
37 mailing list.\n"; | |
38 endif | |
39 | |
40 endfunction |