annotate scripts/io/beep.m @ 27919:1891570abac8

update Octave Project Developers copyright for the new year In files that have the "Octave Project Developers" copyright notice, update for 2020.
author John W. Eaton <jwe@octave.org>
date Mon, 06 Jan 2020 22:29:51 -0500
parents b442ec6dda5c
children bd51beb6205e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
27919
1891570abac8 update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 27918
diff changeset
1 ## Copyright (C) 2003-2020 The Octave Project Developers
27918
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 27898
diff changeset
2 ##
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 27898
diff changeset
3 ## See the file COPYRIGHT.md in the top-level directory of this distribution
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 27898
diff changeset
4 ## or <https://octave.org/COPYRIGHT.html/>.
b442ec6dda5c use centralized file for copyright info for individual contributors
John W. Eaton <jwe@octave.org>
parents: 27898
diff changeset
5 ##
4263
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
6 ##
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
7 ## This file is part of Octave.
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
8 ##
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
9 ## Octave is free software: you can redistribute it and/or modify it
4263
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
10 ## under the terms of the GNU General Public License as published by
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
11 ## the Free Software Foundation, either version 3 of the License, or
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
12 ## (at your option) any later version.
4263
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
13 ##
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
14 ## Octave is distributed in the hope that it will be useful, but
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
15 ## WITHOUT ANY WARRANTY; without even the implied warranty of
22755
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3a2b891d0b33 maint: Standardize Copyright formatting.
Rik <rik@octave.org>
parents: 22323
diff changeset
17 ## GNU General Public License for more details.
4263
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
18 ##
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
19 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6567
diff changeset
20 ## along with Octave; see the file COPYING. If not, see
24534
194eb4bd202b maint: Update punctuation for GPL v3 license text.
Rik <rik@octave.org>
parents: 23220
diff changeset
21 ## <https://www.gnu.org/licenses/>.
4263
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
22
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
23 ## -*- texinfo -*-
20852
516bb87ea72e 2015 Code Sprint: remove class of function from docstring for all m-files.
Rik <rik@octave.org>
parents: 20716
diff changeset
24 ## @deftypefn {} {} beep ()
4293
977f977fb2c3 [project @ 2003-01-06 18:18:14 by jwe]
jwe
parents: 4268
diff changeset
25 ## Produce a beep from the speaker (or visual bell).
20160
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19697
diff changeset
26 ##
20317
2ec049e50ed8 doc: Fix backslash characters in docstrings
Mike Miller <mtmiller@octave.org>
parents: 20160
diff changeset
27 ## This function sends the alarm character @qcode{"@xbackslashchar{}a"} to
20716
1ecee53513d7 doc: Peridodic grammar check of documentation.
Rik <rik@octave.org>
parents: 20317
diff changeset
28 ## the terminal. Depending on the user's configuration this may produce an
20317
2ec049e50ed8 doc: Fix backslash characters in docstrings
Mike Miller <mtmiller@octave.org>
parents: 20160
diff changeset
29 ## audible beep, a visual bell, or nothing at all.
21634
96518f623c91 Backed out changeset dcf8922b724b
Mike Miller <mtmiller@octave.org>
parents: 21633
diff changeset
30 ## @seealso{puts, fputs, printf, fprintf}
4263
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
31 ## @end deftypefn
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
32
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
33 function beep ()
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
34
13041
e5a49b2f8225 codesprint: Single input validation test for beep.m
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
35 if (nargin != 0)
6046
34f96dd5441b [project @ 2006-10-10 16:10:25 by jwe]
jwe
parents: 5642
diff changeset
36 print_usage ();
4268
363d406ec86c [project @ 2003-01-03 15:55:01 by jwe]
jwe
parents: 4263
diff changeset
37 endif
4263
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
38
21634
96518f623c91 Backed out changeset dcf8922b724b
Mike Miller <mtmiller@octave.org>
parents: 21633
diff changeset
39 puts ("\a");
13041
e5a49b2f8225 codesprint: Single input validation test for beep.m
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
40
4263
34b8cd8e6ef5 [project @ 2003-01-03 03:10:57 by jwe]
jwe
parents:
diff changeset
41 endfunction
13041
e5a49b2f8225 codesprint: Single input validation test for beep.m
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
42
e5a49b2f8225 codesprint: Single input validation test for beep.m
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
43
e5a49b2f8225 codesprint: Single input validation test for beep.m
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
44 %!error (beep (1))