Mercurial > emacs
annotate msdos/sedlisp.inp @ 103418:1df3381b5a57
(Setting up a customization file): Grammar fix.
Customize is no longer "new".
(Displaying the current line or column): Line-number mode is on by
default. Don't mention `column' package. Mention linum.el.
(Turning on abbrevs by default): Explain how to do it for buffers,
modes, and everywhere.
(Associating modes with files): Use add-to-list. Don't mention Emacs 19.
(Highlighting a region): On by default since 23.1.
(Replacing highlighted text): Update doc quote.
(Working with unprintable characters): Don't mention search-quote-char.
(Using an already running Emacs process): Gnuclient is probably not an
enhancement these days.
(Indenting switch statements): Remove mention of pre-Emacs 20.
(Horizontal scrolling): Abbreviate Emacs 20 description.
(Replacing text across multiple files): Fix name of dired command.
(Disabling backups): Use require not load.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 13 Jun 2009 20:32:36 +0000 |
parents | dc97fcf1ed7e |
children | 1d1d5d9bd884 |
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, |
100956 | 6 # 2006, 2007, 2008, 2009 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 |
98726
16c0b2e98853
Fix last change: use $(CURDIR).
Eli Zaretskii <eliz@gnu.org>
parents:
98702
diff
changeset
|
23 /^lisp=/s|@srcdir@|$(CURDIR)| |
29678 | 24 /^VPATH=/s|@srcdir@|.| |
29714
2557d0472f9b
(srcdir): Edit this variable.
Eli Zaretskii <eliz@gnu.org>
parents:
29678
diff
changeset
|
25 /^srcdir=/s|@srcdir@|.| |
52401 | 26 |
27 # arch-tag: da7a3cff-4839-4ad7-bbe3-e2b61c84c38e |