Mercurial > emacs
annotate src/s/esix.h @ 71244:11ad1dbc7d45
(org-archive-subtree): Use end-of-subtree as insertion
point and control the number of empty lines.
(org-paste-subtree): Limit the number of empty lines at the end of
the inserted tree.
(org-agenda): Use buffer name of current file for narrowing.
(org-export-as-xml): Command removed.
(org-export-xml-type): Option removed.
(org-mode-map): Call `org-export-as-xoxo' directly.
(org-get-indentation): New optional argument LINE.
(org-fix-indentation, org-remove-tabs): New functions.
(org-export-as-ascii, org-ascii-level-start): Determine and apply
correct indentation for headlines that are converted it items.
(org-skip-comments): Remove table lines that contain narrowing
cookies but no other non-empty fields.
(org-set-tags): Allow groups of mutually exclusive tags.
(org-cmp-time): Sort 24:21 before items without time.
(org-get-time-of-day): Fixed the interpretation of 12pm and 12am.
(org-open-at-point): Require double colon also for numbers.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Tue, 06 Jun 2006 08:26:10 +0000 |
parents | 695cf19ef79e |
children | 375f2633d815 |
rev | line source |
---|---|
457 | 1 /* Definitions for ESIX, a variant of v.5.3 for the 386. */ |
2 /* These are based on reports for ESIX 5.3.2 D. */ | |
3 | |
4 #include "usg5-3.h" | |
5 | |
6 /* Some versions of V.3 have this, but not all. ESIX does. */ | |
7 #define HAVE_PTYS | |
8 #define SYSV_PTYS | |
9 | |
10 /* Have -lg be used for debugging. */ | |
11 #undef LIBS_DEBUG | |
12 #define LIBS_DEBUG -lg | |
13 | |
14 /* If using Roell's X server, define X11R4 */ | |
15 #ifdef X11R4 /* Roell's X server */ | |
16 #define select sys_select /* Emacs select() not good enough? */ | |
17 #undef LIBX11_SYSTEM | |
18 #define LIBX11_SYSTEM -lpt | |
19 #endif /* X11R4 */ | |
20 | |
21 /* ESIX does not need <sys/sioctl.h>, but needs <sys/ptem.h> */ | |
22 #define NO_SIOCTL_H | |
23 #define NEED_PTEM_H | |
24 #define BROKEN_FIONREAD | |
52401 | 25 |
26 /* arch-tag: d66e6a70-0812-437d-aa35-9b01bd474941 | |
27 (do not change this comment) */ |