Mercurial > emacs
annotate etc/3B-MAXMEM @ 27260:ec1a21729421
(xemacsp, version18p, version-20p):
Add ispell- prefix.
Only define dictionaries in menus when they exist.
(version18p): New variable.
(version20p): New variable.
(xemacsp): New variable.
(ispell-choices-win-default-height): Fix for XEmacs visibility.
(ispell-dictionary-alist1): Added Brasileiro dictionary.
(ispell-dictionary-alist6): Russian command lines no longer accept
run-together words.
(ispell-local-dictionary-alist): Add koi8-r to customize definition.
(ispell-dictionary-alist): Add koi8-r to customize definition.
(check-ispell-version): Added documentation string. Returns
library path when called non-interactively.
(ispell-menu-map-needed): Uses new variables.
(ispell-library-path): New variable.
(ispell-decode-string): XEmacs fix for bogus variable bindings.
(ispell-word): Improved documentation string. Test for valid
character mappings. Correctly check typed in word changes that can
result in single words split into multiple words. Returns
replacement word.
(ispell-command-loop): Fixes XEmacs display bugs. Show word to
replace in recursive query replace mode. Help message for
recursive edit mode.
(ispell-show-choices): Protect against bad framepop bindings.
(ispell-help): Fix to work with XEmacs.
(ispell-highlight-spelling-error): Use new variables.
(ispell-overlay-window): Fix to work with XEmacs.
(ispell-parse-output): Passed and returns location information
tracking spelling corrections. Doesn't recheck same word on
current line.
(ispell-init-process): Protect against bogus XEmacs variable binding.
Fix call to single argument in sleep-for. Use new variables.
(ispell-region): Passed and returns location information tracking
spelling corrections. Doesn't check same word on current line.
Improved documentation string. Doesn't resend a line already
checked to the ispell process - fixes bug in LaTeX parsing.
(ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
(ispell-skip-region): No longer skips <TT> in SGML.
(ispell-process-line): Tracks location information with spelling
corrections. Added documentation string. Accounts for words
already accepted on this line. Don't allow query-replace on line
starting with math characters. Doesn't resend a line already sent
to ispell process. Fixes alignment error bug.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Mon, 10 Jan 2000 12:02:49 +0000 |
parents | e96ffe544684 |
children |
rev | line source |
---|---|
25853 | 1 Date: Mon, 16 Feb 87 15:04:41 EST |
2 From: katinsky@gauss.rutgers.edu (David Katinsky) | |
3 To: rms@prep.ai.mit.edu | |
4 Subject: 3b2 procedure to raise MAXMEM | |
5 | |
6 Below is the procedure I followed to allow enough memory for GnuEmacs to run | |
7 on my 3b2/400. The end result of this is that a process can snarf up to 2Mb | |
8 of memory. This can be a bit dangerous on a 2Mb machine, but I tried it and | |
9 it worked ok. | |
10 | |
11 ------------------------------------------------------------------------------- | |
12 | |
13 In the simplest case, these are the procedures to reconfigure a 3bx kernel. | |
14 | |
15 | |
16 | |
17 1] cd /etc/master.d | |
18 | |
19 `ls` shows the files to be: | |
20 | |
21 README ctc* hdelog idisk ipc iuart kernel mau | |
22 mem msg ports* prf sem shm stubs sxt | |
23 sys xt | |
24 | |
25 2] Edit the file which contains the parameter[s] you wish to change. | |
26 In the following excerpt from /etc/master.d/kernel the value MAXMEM | |
27 was raised from 256 to 1024. | |
28 | |
29 In V.3.0 and later releases, the parameter in question is MAXUMEM | |
30 instead of MAXMEM. | |
31 | |
32 | |
33 * | |
34 * The following entries form the tunable parameter table. | |
35 * | |
36 | |
37 | |
38 NCALL = 30 | |
39 NPROC = 60 | |
40 NTEXT = 58 | |
41 NCLIST = 188 | |
42 * maxmem is number of pages (2K) was 256 --dmk | |
43 MAXMEM = 1024 | |
44 MAXUP = 25 | |
45 * hashbuf must be a power of 2 | |
46 NHBUF = 128 | |
47 NPBUF = 8 | |
48 | |
49 3] cd /boot | |
50 | |
51 4] mkboot -k KERNEL | |
52 | |
53 5] shutdown -i5 -g0 -y | |
54 | |
55 This will take the machine down and bring it back up into firmware | |
56 mode. When you see that the machine has reached this state, type the | |
57 firmware password (default=mcp). The machine will ask for the name of | |
58 a program to execute. At this prompt enter /etc/system . The machine | |
59 should start to boot and display its configuration data. | |
60 | |
61 | |
62 | |
63 8701271222 dmk | |
64 | |
65 [katinsky@topaz.rutgers.edu] | |
66 ------------------------------------------------------------------------------- | |
67 | |
68 | |
69 | |
70 I do not feel that having the default firmware password is a | |
71 problem... but if you wish to edit it out, feel free. | |
72 | |
73 dmk | |
74 | |
75 |