annotate msdos/sedlisp.inp @ 109686:111f90199914

Fixed bug#6766 (icalendar.el) lisp/ChangeLog: * calendar/icalendar.el (icalendar-uid-format): Doc fix. (icalendar--split-value): Fixed splitting regexp. (Bug#6766) (icalendar--get-weekday-numbers): New (icalendar--create-uid, icalendar-export-region) (icalendar--parse-summary-and-rest): Code formatting. (icalendar--convert-recurring-to-diary): Handle multiple byday values in weekly rules. (Bug#6766) test/ChangeLog: * icalendar-testsuite.el (icalendar-testsuite-run): Added internal tests. (icalendar-testsuite--trim, icalendar-testsuite--compare-strings) (icalendar-testsuite--run-internal-tests): New. (icalendar-testsuite--test-convert-ordinary-to-ical) (icalendar-testsuite--test-convert-block-to-ical) (icalendar-testsuite--test-convert-anniversary-to-ical) (icalendar-testsuite--test-parse-vtimezone) (icalendar-testsuite--do-test-export): Code formatting. (icalendar-testsuite--test-parse-vtimezone): Doc fix. (icalendar-testsuite--do-test-import) (icalendar-testsuite--do-test-cycle): Use icalendar-testsuite--compare-strings (icalendar-testsuite--run-import-tests): Comment added. (icalendar-testsuite--run-import-tests) (icalendar-testsuite--run-real-world-tests): Fixed expected results.
author Ulf Jasper <ulf.jasper@web.de>
date Sun, 08 Aug 2010 19:42:47 +0200
parents f1433702b7ea
children 417b1e4d63cd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29678
f249b7133ad7 New file.
Eli Zaretskii <eliz@gnu.org>
parents:
diff changeset
1 # -sedlisp.inp-----------------------------------------------------------
f249b7133ad7 New file.
Eli Zaretskii <eliz@gnu.org>
parents:
diff changeset
2 # Configuration script for lisp/Makefile under DJGPP v2.x
f249b7133ad7 New file.
Eli Zaretskii <eliz@gnu.org>
parents:
diff changeset
3 # ----------------------------------------------------------------------
36461
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
4 #
75249
4ad431d8e164 Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents: 68648
diff changeset
5 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
106815
1d1d5d9bd884 Add 2010 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 100956
diff changeset
6 # 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
36461
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
7 #
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
8 # This file is part of GNU Emacs.
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
9 #
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
10 # This file is free software; as a special exception, the author gives
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
11 # unlimited permission to copy and/or distribute it, with or without
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
12 # modifications, as long as this notice is preserved.
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
13 #
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
14 # This program is distributed in the hope that it will be useful,
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
17 #
a4fb0c9be609 Add copyright notices for all files. README is a new file, mainly
Eli Zaretskii <eliz@gnu.org>
parents: 29714
diff changeset
18 # ----------------------------------------------------------------------
29678
f249b7133ad7 New file.
Eli Zaretskii <eliz@gnu.org>
parents:
diff changeset
19
52384
d7624ada9a94 Set FNCASE=y for all targets in the lisp directory,
Eli Zaretskii <eliz@gnu.org>
parents: 44173
diff changeset
20 /^SHELL *=/i\
d7624ada9a94 Set FNCASE=y for all targets in the lisp directory,
Eli Zaretskii <eliz@gnu.org>
parents: 44173
diff changeset
21 export FNCASE=y
d7624ada9a94 Set FNCASE=y for all targets in the lisp directory,
Eli Zaretskii <eliz@gnu.org>
parents: 44173
diff changeset
22
107548
f1433702b7ea Fix the MSDOS build as fallout from the latest Makefile.in changes.
Eli Zaretskii <eliz@gnu.org>
parents: 106815
diff changeset
23 /^lisp *=/s|\$(srcdir)|$(CURDIR)|
f1433702b7ea Fix the MSDOS build as fallout from the latest Makefile.in changes.
Eli Zaretskii <eliz@gnu.org>
parents: 106815
diff changeset
24 /^srcdir *=/s|@srcdir@|.|
f1433702b7ea Fix the MSDOS build as fallout from the latest Makefile.in changes.
Eli Zaretskii <eliz@gnu.org>
parents: 106815
diff changeset
25 /^top_srcdir *=/s|@top_srcdir@|./..|
f1433702b7ea Fix the MSDOS build as fallout from the latest Makefile.in changes.
Eli Zaretskii <eliz@gnu.org>
parents: 106815
diff changeset
26 /^abs_top_builddir *=/s|@abs_top_builddir@|$(CURDIR)/..|
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52384
diff changeset
27
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 52384
diff changeset
28 # arch-tag: da7a3cff-4839-4ad7-bbe3-e2b61c84c38e