annotate src/s/sol2.h @ 81688:35160f9ad876

(orgstruct-mode-map): New variable. (orgstruct-mode): New minor mode. (turn-on-orgstruct, orgstruct-error, orgstruct-setup) (orgstruct-make-binding, org-context-p, org-get-local-variables) (org-run-like-in-org-mode): New functions. (org-cycle-list-bullet): New command. (org-special-properties, org-property-start-re) (org-property-end-re): New constants. (org-with-point-at): New macro. (org-get-property-block, org-entry-properties, org-entry-get) (org-entry-delete, org-entry-get-with-inheritance) (org-entry-put, org-buffer-property-keys): New functions. (org-insert-property-drawer): New command. (org-entry-property-inherited-from): New variable. (org-column): New face. (org-column-overlays, org-current-columns-fmt) (org-current-columns-maxwidths, org-column-map): New variables. (org-column-menu): New menu. (org-new-column-overlay, org-overlay-columns) (org-overlay-columns-title, org-remove-column-overlays) (org-column-show-value, org-column-quit, org-column-edit): New functions. (org-columns, org-agenda-columns): New commands. (org-get-columns-autowidth-alist): New functions. (org-properties): New customize group. (org-default-columns-format): New option. (org-priority): Realign tags after changing priority. (org-preserve-lc): New macro. (org-update-checkbox-count): Catch case when there is no headline. (org-agenda-quit): Remove any column overlays. (org-beginning-of-item-list): Fixed bug when non-item line is indented too deep. (org-cached-props): New variable. (org-cached-entry-get): New function. (org-make-tags-matcher): Handle property matches. (org-table-recalculate): Swap evaluation order: Field formula first, then column formulas, but don't allow them to overwrite the field formulas. (org-table-eval-formula): New argument untouchable. (org-table-put-field-property): New function.
author Carsten Dominik <dominik@science.uva.nl>
date Mon, 02 Jul 2007 13:38:15 +0000
parents d1ea3bc6c40d
children f06998349cfc dd7c098af727
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
75963
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
1 /*
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
2 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
3 2007 Free Software Foundation, Inc.
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
4
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
5 This file is part of GNU Emacs.
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
6
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
7 GNU Emacs is free software; you can redistribute it and/or modify
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
8 it under the terms of the GNU General Public License as published by
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
9 the Free Software Foundation; either version 2, or (at your option)
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
10 any later version.
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
11
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
12 GNU Emacs is distributed in the hope that it will be useful,
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
15 GNU General Public License for more details.
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
16
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
17 You should have received a copy of the GNU General Public License
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
18 along with GNU Emacs; see the file COPYING. If not, write to
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
20 Boston, MA 02110-1301, USA. */
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
21
d1ea3bc6c40d Add copyright and license notice. Copyright years from base include
Glenn Morris <rgm@gnu.org>
parents: 52401
diff changeset
22
2815
60f122cfe785 * process.c (wait_reading_process_input): If we're running
Jim Blandy <jimb@redhat.com>
parents: 2741
diff changeset
23 #include "usg5-4.h"
1179
7961d1af11a7 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24
7872
00d9f3adb17b (SOLARIS2): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 7356
diff changeset
25 #define SOLARIS2
00d9f3adb17b (SOLARIS2): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 7356
diff changeset
26
4189
14c8cd7926a0 (BROKEN_TIOCGETC, BROKEN_TIOCGWINSZ): Add #undefs.
Richard M. Stallman <rms@gnu.org>
parents: 3435
diff changeset
27 /* eggert@twinsun.com said these work in Solaris.
14c8cd7926a0 (BROKEN_TIOCGETC, BROKEN_TIOCGWINSZ): Add #undefs.
Richard M. Stallman <rms@gnu.org>
parents: 3435
diff changeset
28 Perhaps they work in all kinds of SVR4, but this is more conservative. */
14c8cd7926a0 (BROKEN_TIOCGETC, BROKEN_TIOCGWINSZ): Add #undefs.
Richard M. Stallman <rms@gnu.org>
parents: 3435
diff changeset
29 #undef BROKEN_TIOCGETC
14c8cd7926a0 (BROKEN_TIOCGETC, BROKEN_TIOCGWINSZ): Add #undefs.
Richard M. Stallman <rms@gnu.org>
parents: 3435
diff changeset
30 #undef BROKEN_TIOCGWINSZ
14c8cd7926a0 (BROKEN_TIOCGETC, BROKEN_TIOCGWINSZ): Add #undefs.
Richard M. Stallman <rms@gnu.org>
parents: 3435
diff changeset
31
3435
7930bf123cb7 (XOS_NEEDS_TIME_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 3413
diff changeset
32 /* This triggers a conditional in xfaces.c. */
7930bf123cb7 (XOS_NEEDS_TIME_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 3413
diff changeset
33 #define XOS_NEEDS_TIME_H
7930bf123cb7 (XOS_NEEDS_TIME_H): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 3413
diff changeset
34
1179
7961d1af11a7 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 #define POSIX
7961d1af11a7 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36
6103
4acb066b1b96 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 5596
diff changeset
37 /* Here is how to find X Windows. LD_SWITCH_X_SITE_AUX gives an -R option
4acb066b1b96 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 5596
diff changeset
38 says where to find X windows at run time. */
1638
e49c2e6349e4 (LD_SWITCH_SYSTEM): Make alternate version for GCC.
Richard M. Stallman <rms@gnu.org>
parents: 1584
diff changeset
39 #ifndef __GNUC__
5596
191c4af115dc (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX.
Richard M. Stallman <rms@gnu.org>
parents: 4189
diff changeset
40 #define LD_SWITCH_SYSTEM LD_SWITCH_X_SITE_AUX
1638
e49c2e6349e4 (LD_SWITCH_SYSTEM): Make alternate version for GCC.
Richard M. Stallman <rms@gnu.org>
parents: 1584
diff changeset
41 #else /* GCC */
7356
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6103
diff changeset
42 /* We use ./prefix-args because we don't know whether LD_SWITCH_X_SITE_AUX
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6103
diff changeset
43 has anything in it. It can be empty.
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6103
diff changeset
44 This works ok in src. Luckily lib-src does not use LD_SWITCH_SYSTEM. */
55588e31b258 (LD_SWITCH_SYSTEM): Use ./prefix-args, not -Xlinker directly.
Richard M. Stallman <rms@gnu.org>
parents: 6103
diff changeset
45 #define LD_SWITCH_SYSTEM `./prefix-args -Xlinker LD_SWITCH_X_SITE_AUX`
1638
e49c2e6349e4 (LD_SWITCH_SYSTEM): Make alternate version for GCC.
Richard M. Stallman <rms@gnu.org>
parents: 1584
diff changeset
46 #endif /* GCC */
1179
7961d1af11a7 entered into RCS
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47
15300
3dd2c61941f1 Fix previous change.
Karl Heuer <kwzh@gnu.org>
parents: 15295
diff changeset
48 #undef LIBS_SYSTEM
18905
6d543fd6a50b (LIBS_SYSTEM): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18674
diff changeset
49 #define LIBS_SYSTEM -lsocket -lnsl -lkstat
6d543fd6a50b (LIBS_SYSTEM): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18674
diff changeset
50
6d543fd6a50b (LIBS_SYSTEM): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18674
diff changeset
51 /* Prefer kstat over kvm in getloadavg.c, kstat doesn't require root.
44656
e080707a678b (HAVE_LIBKSTAT): Define only if not already defined.
Eli Zaretskii <eliz@gnu.org>
parents: 31600
diff changeset
52 ghazi@caip.rutgers.edu, 7/21/97. Don't redefine if already defined
e080707a678b (HAVE_LIBKSTAT): Define only if not already defined.
Eli Zaretskii <eliz@gnu.org>
parents: 31600
diff changeset
53 (e.g., by config.h). */
e080707a678b (HAVE_LIBKSTAT): Define only if not already defined.
Eli Zaretskii <eliz@gnu.org>
parents: 31600
diff changeset
54 #ifndef HAVE_LIBKSTAT
18905
6d543fd6a50b (LIBS_SYSTEM): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents: 18674
diff changeset
55 #define HAVE_LIBKSTAT
44656
e080707a678b (HAVE_LIBKSTAT): Define only if not already defined.
Eli Zaretskii <eliz@gnu.org>
parents: 31600
diff changeset
56 #endif
27750
48fa3afce611 (C_DEBUG_SWITCH): Define to allow optimization.
Dave Love <fx@gnu.org>
parents: 27677
diff changeset
57
48fa3afce611 (C_DEBUG_SWITCH): Define to allow optimization.
Dave Love <fx@gnu.org>
parents: 27677
diff changeset
58 /* eggert thinks all versions of SunPro C allowed this. */
48fa3afce611 (C_DEBUG_SWITCH): Define to allow optimization.
Dave Love <fx@gnu.org>
parents: 27677
diff changeset
59 #ifndef __GNUC__
48fa3afce611 (C_DEBUG_SWITCH): Define to allow optimization.
Dave Love <fx@gnu.org>
parents: 27677
diff changeset
60 #define C_DEBUG_SWITCH -g -O
48fa3afce611 (C_DEBUG_SWITCH): Define to allow optimization.
Dave Love <fx@gnu.org>
parents: 27677
diff changeset
61 #endif
28143
210942d0dc07 (INHIBIT_X11R6_XIM): Define.
Gerd Moellmann <gerd@gnu.org>
parents: 27750
diff changeset
62
210942d0dc07 (INHIBIT_X11R6_XIM): Define.
Gerd Moellmann <gerd@gnu.org>
parents: 27750
diff changeset
63 /* inoue@ainet.or.jp says Solaris has a bug related to X11R6-style
210942d0dc07 (INHIBIT_X11R6_XIM): Define.
Gerd Moellmann <gerd@gnu.org>
parents: 27750
diff changeset
64 XIM support. */
210942d0dc07 (INHIBIT_X11R6_XIM): Define.
Gerd Moellmann <gerd@gnu.org>
parents: 27750
diff changeset
65
210942d0dc07 (INHIBIT_X11R6_XIM): Define.
Gerd Moellmann <gerd@gnu.org>
parents: 27750
diff changeset
66 #define INHIBIT_X11R6_XIM
30426
8674e7d48c7a (LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents: 28143
diff changeset
67
8674e7d48c7a (LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents: 28143
diff changeset
68 /* Must use the system's termcap, if we use any termcap.
8674e7d48c7a (LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents: 28143
diff changeset
69 It does special things. */
8674e7d48c7a (LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents: 28143
diff changeset
70
8674e7d48c7a (LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents: 28143
diff changeset
71 #ifndef TERMINFO
8674e7d48c7a (LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents: 28143
diff changeset
72 #define LIBS_TERMCAP -ltermcap
8674e7d48c7a (LIBS_TERMCAP): Move from m/sparc.h.
Dave Love <fx@gnu.org>
parents: 28143
diff changeset
73 #endif
31503
f3dc37a3c26a (REL_ALLOC_MMAP): Define.
Dave Love <fx@gnu.org>
parents: 30426
diff changeset
74
31600
ac8c86ff7ee3 (USE_MMAP_FOR_BUFFERS): Define instead of REL_ALLOC_MMAP.
Gerd Moellmann <gerd@gnu.org>
parents: 31503
diff changeset
75 #define USE_MMAP_FOR_BUFFERS 1
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 44656
diff changeset
76
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 44656
diff changeset
77 /* arch-tag: b0640f78-5ad5-4093-97c3-5b3abbf5a2be
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 44656
diff changeset
78 (do not change this comment) */