annotate etc/Makefile @ 3894:a2dc34c691cc
Set up autoloads for files `makeinfo' and `texnfo-upd'.
(texinfo-delete-from-print-queue-command): New var.
(texinfo-tex-trailer): New var.
(texinfo-tex-region): Use that.
(texinfo-tex-buffer): Rewritten; use the actual source file.
Binding is now C-c C-t C-b.
(texinfo-texindex): Turned back on.
(texinfo-quit-job): New command, with binding.
(texinfo-delete-from-print-queue): Likewise.
(texinfo-show-structure): Indent each line according to depth.
Require texnfo-upd.
(texinfo-section-types-regexp): Var deleted.
(texinfo-insert-@-with-arg): New function.
(texinfo-insert-@var, etc.): Use that.
(texinfo-insert-@end): New command, now on C-c C-c e.
(texinfo-insert-@end-example): Deleted.
(texinfo-insert-@table): New command, on C-c C-c t.
(texinfo-start-menu-description): New command, on C-c C-c C-d.
(texinfo-mode): No longer set tex-trailer.
Make the @node for the top node start a page.
Use shorter values for tex-end-of-header and tex-start-of-header.
(texinfo-mode-map): Add bindings for makeinfo-buffer, etc.
Delete bindings for texinfo-format-buffer/region.
(texinfo-define-common-keys): New function.
author |
Richard M. Stallman <rms@gnu.org> |
date |
Fri, 25 Jun 1993 06:41:54 +0000 |
parents |
3ce509de88ec |
children |
cb15d148ee99 |
rev |
line source |
2260
|
1 DESTDIR=
|
|
2 LIBDIR=/usr/local/lib
|
|
3 BINDIR=/usr/local/bin
|
|
4 MANDIR=/usr/man/man1
|
|
5 MANEXT=1
|
|
6
|
|
7 all:
|
|
8
|
3752
|
9 mostlyclean clean:
|
|
10 -rm -f core
|
2260
|
11
|
3752
|
12 distclean realclean:
|
|
13 -rm -f DOC* core
|
2260
|
14
|
|
15 SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* etags.* ledit.l ms-* \
|
|
16 news.texi rc2log refcard.tex spook-lines termcap.* ulimit.hack \
|
|
17 vcdiff vipcard.tex xmouse.doc
|
|
18
|
|
19 unlock:
|
|
20 chmod u+w $(SOURCES)
|
|
21
|
|
22 relock:
|
|
23 chmod u-w $(SOURCES)
|