Mercurial > emacs
annotate src/vmstime.h @ 23200:4750ba95a176
(reftex-view-crossref): Split up into several functions. No longer moves
to find a macro.
(reftex-view-cr-cite, reftex-view-cr-ref,
reftex-end-of-bib-entry): New functions.
(reftex-auto-view-crossref): New value `window' allowed.
(reftex-view-crossref-when-idle): Process new `window' option in
(reftex-translate-to-ascii-function): New default.
(reftex-label-illegal-re): Default changed, removed Latin1.
(reftex-latin1-to-ascii): New function.
(reftex-what-environment): Check for section regexp before use.
(reftex-find-tex-file, reftex-find-bib-file): Fixed bug with absolute
path names.
(reftex-TeX-master-file): Changed sequence of file checks.
(reftex-do-citation): bibview cache only with RefTeX mode on.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Mon, 07 Sep 1998 07:28:16 +0000 |
parents | ee40177f6c68 |
children |
rev | line source |
---|---|
2176 | 1 /* Interface to time support for VMS. |
2 Copyright (C) 1993 Free Software Foundation. | |
3 | |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 2, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
2176
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
2176
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
2176 | 20 |
2174 | 21 #ifndef vmstime_h |
22 #define vmstime_h | |
23 | |
24 #include <time.h> | |
25 #include <libdtdef.h> | |
26 | |
27 extern long timezone; | |
28 extern int daylight; | |
29 extern char *tzname[2]; | |
30 | |
31 void sys_tzset(); | |
32 struct tm *sys_localtime(time_t *clock); | |
33 struct tm *sys_gmtime(time_t *clock); | |
34 | |
35 #endif /* vmstime_h */ |