Mercurial > emacs
annotate etc/Makefile @ 28563:7d8ea470609b
(ispell-menu-map): Menu items rearranged and
converted to the new menu-item format, names silightly changed,
help strings added.
Support for spelling without async subprocesses:
(ispell-cmd-args, ispell-output-buffer)
(ispell-session-buffer): New variables.
(ispell-start-process, ispell-process-status,
ispell-accept-output, ispell-send-string): New functions, for
Ispell invocation when async subprocesses aren't supported.
(ispell-word, ispell-pdict-save, ispell-command-loop,
ispell-process-line, ispell-buffer-local-parsing): Replace calls
to process-send-string with calls to ispell-send-string, and
accept-process-output with ispell-accept-output.
(ispell-init-process): Call ispell-process-status instead of
process-status with.
(ispell-init-process): Call ispell-start-process. Call
ispell-accept-output and ispell-send-string. Don't call
process-kill-without-query and kill-process if they are unbound.
(ispell-async-processp): New function.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 13 Apr 2000 14:01:10 +0000 |
parents | 4baa1bd953d8 |
children | 86432f19ad96 |
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 | |
6996 | 9 mostlyclean: |
3752 | 10 -rm -f core |
2260 | 11 |
11602
4baa1bd953d8
(maintainer-clean): Renamed from realclean.
Karl Heuer <kwzh@gnu.org>
parents:
10053
diff
changeset
|
12 clean distclean maintainer-clean: |
3752 | 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) | |
10053 | 24 |
25 # ${etcdir}/e/eterm is used by ../lisp/term.el. | |
26 # TERMINFO systems use terminfo files compiled by the Terminfo Compiler (tic). | |
27 # These files are binary, and depend on the version of tic, but they seem | |
28 # to be system-independent and backwardly compatible. | |
29 # So there should be no need to recompile the distributed binary version. | |
30 TIC=tic | |
31 e/eterm: e/eterm.ti | |
32 TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm.ti | |
33 |