Mercurial > emacs
annotate msdos/sedlisp.inp @ 96126:fcd827c4a553
Fix up docstring conventions.
Move vars to before their first use.
(rst-mode): Don't mess with font-lock-support-mode.
(rst-suggest-new-decoration, rst-adjust-decoration):
Avoid CL's copy-list.
(rst-delete-entire-line): Use line-beginning-position.
(rst-position): New fun.
(rst-straighten-decorations): Use it instead of CL's position.
(rst-straighten-bullets-region): Avoid CL's mapcar*.
(rst-toc-mode): Use define-derived-mode.
(rst-iterate-leftmost-paragraphs, rst-iterate-leftmost-paragraphs-2):
Remove unused var `in-par'. Use `point' rather than `point-marker'.
(rst-line-block-region): Reduce redundancy. Use the `pfxarg' arg.
(rst-replace-lines): Simplify.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 20 Jun 2008 17:53:42 +0000 |
parents | 319d87609e42 |
children | 606f2d163a64 f8b9555242f1 |
rev | line source |
---|---|
29678 | 1 # -sedlisp.inp----------------------------------------------------------- |
2 # Configuration script for lisp/Makefile under DJGPP v2.x | |
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, |
79742 | 6 # 2006, 2007, 2008 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 | 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 |
29678 | 23 /^lisp=/s|@srcdir@|.| |
24 /^VPATH=/s|@srcdir@|.| | |
29714
2557d0472f9b
(srcdir): Edit this variable.
Eli Zaretskii <eliz@gnu.org>
parents:
29678
diff
changeset
|
25 /^srcdir=/s|@srcdir@|.| |
44173
248fd1113276
<bootstrap-clean>: Make sure all *.el files have Unix EOLs, to
Eli Zaretskii <eliz@gnu.org>
parents:
36461
diff
changeset
|
26 /^bootstrap-clean:/a\ |
58036
b309e3bd6890
(bootstrap-clean): Copy ldefs-boot.el onto
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
27 command.com /c dtou .../*.el\ |
b309e3bd6890
(bootstrap-clean): Copy ldefs-boot.el onto
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
28 command.com /c update $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el |
52401 | 29 |
30 # arch-tag: da7a3cff-4839-4ad7-bbe3-e2b61c84c38e |