Mercurial > emacs
annotate src/cxux-crt0.s @ 59534:9bad65481674
2005-01-14 Carsten Dominik <dominik@science.uva.nl>
* reftex-cite.el (reftex-bib-sort-year): Catch the case if the
year is not given.
* reftex-ref.el (reftex-replace-prefix-escapes): Added new escapes
%m and %M, fixed bug with %F by adding save-match-data.
(reftex-reference): Removed ?. from list of spaces.
(reftex-label-info): Added automatic label prefix recognition
* reftex-index.el (reftex-index-next-phrase): Added slave
parameter to call of `reftex-index-this-phrase'
(reftex-index-this-phrase): New optional argument
(reftex-index-region-phrases): Added slave parameter to call of
`reftex-index-this-phrase'
(reftex-display-index): New argument redo
(reftex-index-rescan): Added 'redo to arguments of
`reftex-display-index'
(reftex-index-Rescan, reftex-index-revert)
(reftex-index-switch-index-tag): Added 'redo to arguments of
`reftex-display-index'
(reftex-index-make-phrase-regexp): Fixed bug with case-sensitive
indexing. Fixed bug with matching is there is a quote before or
after the word.
* reftex-cite.el (reftex-all-used-citation-keys): Fix bug when
collecting citation keys in lines with comments.
(reftex-citation): Prefix argument no longer rescans the document,
but forces prompting for optional arguments of cite macros.
(reftex-do-citation): Prompting for optional arguments
implemented.
* reftex-vars.el (reftex-cite-format-builtin): Added optional
arguments to most cite commands.
(reftex-cite-cleanup-optional-args): New option
(reftex-cite-prompt-optional-args): New option.
(reftex-trust-label-prefix): New option
* reftex-toc.el (reftex-toc-find-section): Added push-mark before
changing the position in the buffer.
* reftex.el (reftex-prefix-to-typekey-alist): New variable
(reftex-compile-variables): Compute reftex-prefix-to-typekey-alist
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Fri, 14 Jan 2005 10:12:03 +0000 |
parents | 695cf19ef79e |
children | a0d1312ede66 375f2633d815 |
rev | line source |
---|---|
25843 | 1 /* |
2 * External symbol setup file for GNU Emacs on CX/UX | |
3 * Copyright (C) 1990 Free Software Foundation, Inc. | |
4 * | |
5 * This file is part of GNU Emacs. | |
6 * | |
7 * GNU Emacs is distributed in the hope that it will be useful, | |
8 * but WITHOUT ANY WARRANTY. No author or distributor | |
9 * accepts responsibility to anyone for the consequences of using it | |
10 * or for whether it serves any particular purpose or works at all, | |
11 * unless he says so in writing. Refer to the GNU Emacs General Public | |
12 * License for full details. | |
13 * | |
14 * Everyone is granted permission to copy, modify and redistribute | |
15 * GNU Emacs, but only under the conditions described in the | |
16 * GNU Emacs General Public License. A copy of this license is | |
17 * supposed to have been given to you along with GNU Emacs so you | |
18 * can know your rights and responsibilities. It should be in a | |
19 * file named COPYING. Among other things, the copyright notice | |
20 * and this notice must be preserved on all copies. | |
21 */ | |
22 | |
23 /* | |
24 * This file makes the start of the text and data regions of the program | |
25 * clearly visible to the GNU Emacs C source code, without any dependencies | |
26 * on any changes made to the standard C runtime startup module, crt0.o. | |
27 * It depends, however, on this file being passed down to the linker (ld) | |
28 * before any others, and the linker's behavior of assigning increasing | |
29 * addresses as it finds symbols. | |
30 */ | |
31 /* C symbol _start marks beginning of text region. */ | |
32 .text | |
33 .globl __start | |
34 __start: | |
35 /* C symbol data_start marks beginning of data region. */ | |
36 .data | |
37 .globl _data_start | |
38 _data_start: .space 4 | |
52401 | 39 |
40 /* arch-tag: ba84e4dc-615d-4a81-898c-f5b98ec71c9d | |
41 (do not change this comment) */ |