Mercurial > hg > octave-lyh
annotate scripts/plot/private/__axis_label__.m @ 17204:bc20614022aa
build: Redo LLVM macros to disable JIT rather than stop build if headers not found.
* configure.ac: Move functionality for OCTAVE_LLVM_IR_DIR,
OCTAVE_LLVM_IRBUILDER_HEADER, OCTAVE_LLVM_DATALAYOUT_HEADER macros
from acinclude.m4 to configure.ac.
* m4/acinclude.m4: Delete OCTAVE_LLVM_IR_DIR, OCTAVE_LLVM_IRBUILDER_HEADER,
OCTAVE_LLVM_DATALAYOUT_HEADER macros. Eliminate unnecessary else clause of
OCTAVE_LLVM_FUNCTION_ADDATTRIBUTE_API, OCTAVE_LLVM_FUNCTION_ADDFNATTR_API,
OTAVE_LLVM_CALLINST_ADDATTRIBUTE_API macros.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 07 Aug 2013 12:03:31 -0700 |
parents | 27062be131d6 |
children | 1c89599167a6 |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
13800
diff
changeset
|
1 ## Copyright (C) 1996-2012 John W. Eaton |
3479 | 2 ## |
3 ## This file is part of Octave. | |
4 ## | |
5 ## Octave is free software; you can redistribute it and/or modify it | |
6 ## under the terms of the GNU General Public License as published by | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
3479 | 9 ## |
10 ## Octave is distributed in the hope that it will be useful, but | |
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 ## General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
3479 | 18 |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8557
diff
changeset
|
19 ## -*- texinfo -*- |
13800
5acb5c25e4ae
allow axes handle to be passed to title function
John W. Eaton <jwe@octave.org>
parents:
12965
diff
changeset
|
20 ## @deftypefn {Function File} {} __axis_label__ (@var{caller}, @var{h}, @var{txt}, @dots{}) |
6895 | 21 ## Undocumented internal function. |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8557
diff
changeset
|
22 ## @end deftypefn |
3479 | 23 |
24 ## Author: jwe | |
25 | |
17053
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
26 function retval = __axis_label__ (hax, caller, txt, varargin) |
3479 | 27 |
17053
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
28 h = get (hax, caller); |
8557
ab82e19002c4
better compatibility for axis label properties
John W. Eaton <jwe@octave.org>
parents:
8556
diff
changeset
|
29 |
17053
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
30 set (h, "fontangle", get (hax, "fontangle"), |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
31 "fontname", get (hax, "fontname"), |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
32 "fontunits", get (hax, "fontunits"), # must precede fontsize |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
33 "fontsize", get (hax, "fontsize"), |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
34 "fontweight", get (hax, "fontweight"), |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
35 "string", txt, |
27062be131d6
__axis_label__.m: Rename ax to hax. Align spacing in code.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
36 varargin{:}); |
11589
b0084095098e
missing semicolons in script files
John W. Eaton <jwe@octave.org>
parents:
11587
diff
changeset
|
37 |
12965
22bc9ec80c2c
allow multi-line string property for text objects using cell arrays or char matrices
Ben Abbott <bpabbott@mac.com>
parents:
12319
diff
changeset
|
38 if (nargout > 0) |
22bc9ec80c2c
allow multi-line string property for text objects using cell arrays or char matrices
Ben Abbott <bpabbott@mac.com>
parents:
12319
diff
changeset
|
39 retval = h; |
4529 | 40 endif |
41 | |
3479 | 42 endfunction |