Mercurial > emacs
annotate src/firstfile.c @ 82105:e684bfddd6f3
(cal-tex-which-days, cal-tex-holidays)
(cal-tex-diary, cal-tex-daily-string, cal-tex-daily-start)
(cal-tex-daily-end, cal-tex-hook)
(cal-tex-cal-one-month, cal-tex-cal-multi-month)
(cal-tex-year, cal-tex-cursor-week, cal-tex-cursor-week2)
(cal-tex-cursor-week-iso, cal-tex-week-hours)
(cal-tex-cursor-week-monday, cal-tex-weekly4-box)
(cal-tex-cursor-day, cal-tex-insert-preamble): Doc fix.
(cal-tex-day-prefix, cal-tex-day-name-format)
(cal-tex-cal-one-month, cal-tex-cal-multi-month, cal-tex-myday)
(cal-tex-caldate, cal-tex-LaTeX-hourbox)
(cal-tex-LaTeX-subst-list): Change from variables to constants.
(cal-tex-preamble, cal-tex-arg, cal-tex-nl): Simplify with `format'.
(cal-tex-cursor-filofax-year, cal-tex-weekly4-box): Use \textbf,
etc, rather than \bf.
(cal-tex-mini-calendar): Fix typos in previous change.
(cal-tex-latexify-list): Remove inner let binding.
(cal-tex-end-document, cal-tex-banner): Use multi-line
cal-tex-comment.
(cal-tex-comment): Handle embedded newlines.
(cal-tex-LaTeXify-string): Use substring-no-properties.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 25 Jul 2007 08:52:43 +0000 |
parents | e90d04cd455a |
children | 922696f363b0 95d0cdf160ea |
rev | line source |
---|---|
19794 | 1 /* Mark beginning of data space to dump as pure, for GNU Emacs. |
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
68651
diff
changeset
|
2 Copyright (C) 1997, 2001, 2002, 2003, 2004, 2005, |
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
68651
diff
changeset
|
3 2006, 2007 Free Software Foundation, Inc. |
19794 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
9 the Free Software Foundation; either version 2, or (at your option) | |
10 any later version. | |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 Boston, MA 02110-1301, USA. */ | |
19794 | 21 |
22 | |
23 #include <config.h> | |
24 | |
25 #ifdef WINDOWSNT | |
26 /* See comments in lastfile.c. */ | |
27 char my_begdata[] = "Beginning of Emacs initialized data"; | |
28 char my_begbss[1]; /* Do not initialize this variable. */ | |
29 static char _my_begbss[1]; | |
30 char * my_begbss_static = _my_begbss; | |
31 | |
32 /* Add a dummy reference to ensure emacs.obj is linked in. */ | |
33 extern int initialized; | |
34 static int * dummy = &initialized; | |
35 #endif | |
36 | |
52401 | 37 /* arch-tag: a6c0d2dd-00c3-4ba5-95a5-9c8ab82f39b2 |
38 (do not change this comment) */ |