1858
|
1 This file describes various problems that have been encountered
|
|
2 in compiling, installing and running GNU Emacs.
|
|
3
|
1949
|
4 * `expand-file-name' fails to work on any but the machine you dumped Emacs on.
|
|
5
|
|
6 On some systems, if you use any of the functions which look up
|
|
7 information in the passwd database before dumping Emacs (say, by using
|
|
8 expand-file-name in site-init.el), then those functions will not work
|
|
9 in the dumped Emacs on any host but the one Emacs was dumped on.
|
|
10
|
|
11 Apparently, the Yellow Pages (or Network Information Service)
|
|
12 functions cache information the first time they are called in the
|
|
13 undumped emacs, this information gets included in the dumped
|
|
14 executable, and it is then inaccurate if the executable is used on
|
|
15 another host.
|
|
16
|
|
17 The solution? Don't use expand-file-name in site-init.el, or in
|
|
18 anything it loads. Yuck.
|
|
19
|
1858
|
20 * On some variants of SVR4, Emacs does not work at all with X.
|
|
21
|
|
22 Try defining BROKEN_FIONREAD in your config.h file. If this solves
|
|
23 the problem, please send a bug report to tell us this is needed; be
|
|
24 sure to say exactly what type of machine and system you are using.
|
|
25
|
|
26 * Linking says that the functions insque and remque are undefined.
|
|
27
|
|
28 Change oldXMenu/Makefile by adding insque.o to the variable OBJS.
|
|
29
|
|
30 * Emacs fails to understand most Internet host names, even though
|
|
31 the names work properly with other programs on the same system.
|
|
32
|
|
33 This typically happens on Suns and other systems that use shared
|
|
34 libraries. The cause is that the site has installed a version of the
|
|
35 shared library which uses a name server--but has not installed a
|
|
36 similiar version of the unshared library which Emacs uses.
|
|
37
|
|
38 The result is that most programs, using the shared library, work with
|
|
39 the nameserver, but Emacs does not.
|
|
40
|
|
41 The fix is to install an unshared library that corresponds to what you
|
|
42 installed in the shared library, and then relink Emacs.
|
|
43
|
|
44 * On a Sun running SunOS 4.1.1, you get this error message from GNU ld:
|
|
45
|
|
46 /lib/libc.a(_Q_sub.o): Undefined symbol __Q_get_rp_rd referenced from text segment
|
|
47
|
|
48 The problem is in the Sun shared C library, not in GNU ld.
|
|
49
|
|
50 The solution is to install Patch-ID# 100267-03 from Sun.
|
|
51
|
|
52 * Self documentation messages are garbled.
|
|
53
|
|
54 This means that the file `etc/DOC-...' doesn't properly correspond
|
|
55 with the Emacs executable. Redumping Emacs and then installing the
|
|
56 corresponding pair of files should fix the problem.
|
|
57
|
|
58 * M-x shell immediately responds "Process shell exited abnormally with code 1".
|
|
59
|
|
60 This is often due to inability to run the program `env'.
|
|
61 This should be in the `etc' subdirectory of the directory
|
|
62 where Emacs is installed, and it should be marked executable.
|
|
63
|
|
64 * Trouble using ptys on AIX.
|
|
65
|
|
66 People often instll the pty devices on AIX incorrectly.
|
|
67 Use `smit pty' to reinstall them properly.
|
|
68
|
|
69 * Shell mode on HP/UX gives the message, "`tty`: Ambiguous".
|
|
70
|
|
71 christos@theory.tn.cornell.edu says:
|
|
72
|
|
73 The problem is that in your .cshrc you have something that tries to
|
|
74 execute `tty`. If you are not running the shell on a real tty then
|
|
75 tty will print "not a tty". Csh expects one word in some places,
|
|
76 but tty is giving it back 3.
|
|
77
|
|
78 The solution is to add a pair of quotes around `tty` to make it a single
|
|
79 word:
|
|
80
|
|
81 if (`tty` == "/dev/console")
|
|
82
|
|
83 should be changed to:
|
|
84
|
|
85 if ("`tty`" == "/dev/console")
|
|
86
|
|
87 Even better, move things that set up terminal sections out of .cshrc
|
|
88 and into .login.
|
|
89
|
|
90 * Using X Windows, control-shift-leftbutton makes Emacs hang.
|
|
91
|
|
92 Use the shell command `xset bc' to make the old X Menu package work.
|
|
93
|
|
94 * Emacs running under X Windows does not handle mouse clicks.
|
|
95 * `emacs -geometry 80x20' finds a file named `80x20'.
|
|
96
|
|
97 One cause of such problems is having (setq term-file-prefix nil) in
|
|
98 your .emacs file. Another cause is a bad value of EMACSLOADPATH in
|
|
99 the environment.
|
|
100
|
|
101 * Emacs starts in a directory other than the one that is current in the shell.
|
|
102
|
|
103 If the PWD environment variable exists, Emacs uses this variable as
|
|
104 the initial working directory.
|
|
105
|
|
106 Some shells automatically update this variable, while other shells fail
|
|
107 to do so. If you use two such shells in combination, the variable can
|
|
108 end up wrong. This confuses Emacs.
|
|
109
|
|
110 The solution is to put something in the start-up file for the shell
|
|
111 that does not update PWD, to get rid of that environment variable.
|
|
112 For example, in csh, use `unsetenv PWD'.
|
|
113
|
|
114 * Emacs gets error message from linker on Sun.
|
|
115
|
|
116 If the error message says that a symbol such as `f68881_used' or
|
|
117 `ffpa_used' or `start_float' is undefined, this probably indicates
|
|
118 that you have compiled some libraries, such as the X libraries,
|
|
119 with a floating point option other than the default.
|
|
120
|
|
121 It's not terribly hard to make this work with small changes in
|
|
122 crt0.c together with linking with Fcrt1.o, Wcrt1.o or Mcrt1.o.
|
|
123 However, the easiest approach is to build Xlib with the default
|
1949
|
124 floating point option: -fsoft.
|
1858
|
125
|
|
126 * Emacs fails to get default settings from X Windows server.
|
|
127
|
|
128 The X library in X11R4 has a bug; it interchanges the 2nd and 3rd
|
|
129 arguments to XGetDefaults. Define the macro XBACKWARDS in config.h to
|
|
130 tell Emacs to compensate for this.
|
|
131
|
|
132 I don't believe there is any way Emacs can determine for itself
|
|
133 whether this problem is present on a given system.
|
|
134
|
|
135 * Keyboard input gets confused after a beep when using a DECserver
|
|
136 as a concentrator.
|
|
137
|
|
138 This problem seems to be a matter of configuring the DECserver to use
|
|
139 7 bit characters rather than 8 bit characters.
|
|
140
|
|
141 * M-x shell persistently reports "Process shell exited abnormally with code 1".
|
|
142
|
|
143 This happened on Suns as a result of what is said to be a bug in Sunos
|
|
144 version 4.0.x. The only fix was to reboot the machine.
|
|
145
|
|
146 * Programs running under terminal emulator do not recognize `emacs'
|
|
147 terminal type.
|
|
148
|
|
149 The cause of this is a shell startup file that sets the TERMCAP
|
|
150 environment variable. The terminal emulator uses that variable to
|
|
151 provide the information on the special terminal type that Emacs
|
|
152 emulates.
|
|
153
|
|
154 Rewrite your shell startup file so that it does not change TERMCAP
|
|
155 in such a case. You could use the following conditional which sets
|
|
156 it only if it is undefined.
|
|
157
|
|
158 if ( ! ${?TERMCAP} ) setenv TERMCAP ~/my-termcap-file
|
|
159
|
|
160 Or you could set TERMCAP only when you set TERM--which should not
|
|
161 happen in a non-login shell.
|
|
162
|
|
163 * Error compiling sysdep.c, "sioctl.h: no such file or directory".
|
|
164
|
|
165 Among USG systems with TIOCGWINSZ, some require sysdep.c to include
|
|
166 the file sioctl.h; on others, sioctl.h does not exist. We don't know
|
|
167 how to distinguish these two kind of systems, so currently we try to
|
|
168 include sioctl.h on all of them. If this #include gets an error, just
|
|
169 delete it.
|
|
170
|
|
171 * X Windows doesn't work if DISPLAY uses a hostname.
|
|
172
|
|
173 People have reported kernel bugs in certain systems that cause Emacs
|
|
174 not to work with X Windows if DISPLAY is set using a host name. But
|
|
175 the problem does not occur if DISPLAY is set to `unix:0.0'. I think
|
|
176 the bug has to do with SIGIO or FIONREAD.
|
|
177
|
|
178 You may be able to compensate for the bug by doing (set-input-mode nil nil).
|
|
179 However, that has the disadvantage of turning off interrupts, so that
|
|
180 you are unable to quit out of a Lisp program by typing C-g.
|
|
181
|
|
182 The easy way to do this is to put
|
|
183
|
|
184 (setq x-sigio-bug t)
|
|
185
|
|
186 in your site-init.el file.
|
|
187
|
|
188 * Problem with remote X server on Suns.
|
|
189
|
|
190 On a Sun, running Emacs on one machine with the X server on another
|
|
191 may not work if you have used the unshared system libraries. This
|
|
192 is because the unshared libraries fail to use YP for host name lookup.
|
|
193 As a result, the host name you specify may not be recognized.
|
|
194
|
|
195 * Watch out for .emacs files and EMACSLOADPATH environment vars
|
|
196
|
|
197 These control the actions of Emacs.
|
|
198 ~/.emacs is your Emacs init file.
|
|
199 EMACSLOADPATH overrides which directories the function
|
|
200 "load" will search.
|
|
201
|
|
202 If you observe strange problems, check for these and get rid
|
|
203 of them, then try again.
|
|
204
|
|
205 * Shell mode ignores interrupts on Apollo Domain
|
|
206
|
|
207 You may find that M-x shell prints the following message:
|
|
208
|
|
209 Warning: no access to tty; thus no job control in this shell...
|
|
210
|
|
211 This can happen if there are not enough ptys on your system.
|
|
212 Here is how to make more of them.
|
|
213
|
|
214 % cd /dev
|
|
215 % ls pty*
|
|
216 # shows how many pty's you have. I had 8, named pty0 to pty7)
|
|
217 % /etc/crpty 8
|
|
218 # creates eight new pty's
|
|
219
|
|
220 * Fatal signal in the command temacs -l loadup inc dump
|
|
221
|
|
222 This command is the final stage of building Emacs. It is run by the
|
|
223 Makefile in the src subdirectory, or by build.com on VMS.
|
|
224
|
|
225 It has been known to get fatal errors due to insufficient swapping
|
|
226 space available on the machine.
|
|
227
|
|
228 On 68000's, it has also happened because of bugs in the
|
|
229 subroutine `alloca'. Verify that `alloca' works right, even
|
|
230 for large blocks (many pages).
|
|
231
|
|
232 * test-distrib says that the distribution has been clobbered
|
|
233 * or, temacs prints "Command key out of range 0-127"
|
|
234 * or, temacs runs and dumps xemacs, but xemacs totally fails to work.
|
|
235 * or, temacs gets errors dumping xemacs
|
|
236
|
|
237 This can be because the .elc files have been garbled. Do not be
|
|
238 fooled by the fact that most of a .elc file is text: these are
|
|
239 binary files and can contain all 256 byte values.
|
|
240
|
|
241 In particular `shar' cannot be used for transmitting GNU Emacs.
|
|
242 It typically truncates "lines". What appear to be "lines" in
|
|
243 a binary file can of course be of any length. Even once `shar'
|
|
244 itself is made to work correctly, `sh' discards null characters
|
|
245 when unpacking the shell archive.
|
|
246
|
|
247 I have also seen character \177 changed into \377. I do not know
|
|
248 what transfer means caused this problem. Various network
|
|
249 file transfer programs are suspected of clobbering the high bit.
|
|
250
|
|
251 The only verified ways to transfer GNU Emacs are `tar', kermit (in
|
|
252 binary mode on Unix), and rcp or internet ftp between two Unix systems,
|
|
253 or chaosnet cftp using raw mode.
|
|
254
|
|
255 If you have a copy of Emacs that has been damaged in its
|
|
256 nonprinting characters, you can fix them:
|
|
257
|
|
258 1) Record the names of all the .elc files.
|
|
259 2) Delete all the .elc files.
|
|
260 3) Recompile alloc.c with a value of PURESIZE twice as large.
|
|
261 You might as well save the old alloc.o.
|
|
262 4) Remake xemacs. It should work now.
|
|
263 5) Running xemacs, do Meta-x byte-compile-file repeatedly
|
|
264 to recreate all the .elc files that used to exist.
|
|
265 You may need to increase the value of the variable
|
|
266 max-lisp-eval-depth to succeed in running the compiler interpreted
|
|
267 on certain .el files. 400 was sufficient as of last report.
|
|
268 6) Reinstall the old alloc.o (undoing changes to alloc.c if any)
|
|
269 and remake temacs.
|
|
270 7) Remake xemacs. It should work now, with valid .elc files.
|
|
271
|
|
272 * temacs prints "Pure Lisp storage exhausted"
|
|
273
|
|
274 This means that the Lisp code loaded from the .elc and .el
|
|
275 files during temacs -l loadup inc dump took up more
|
|
276 space than was allocated.
|
|
277
|
|
278 This could be caused by
|
|
279 1) adding code to the preloaded Lisp files
|
|
280 2) adding more preloaded files in loadup.el
|
|
281 3) having a site-init.el or site-load.el which loads files.
|
|
282 Note that ANY site-init.el or site-load.el is nonstandard;
|
|
283 if you have received Emacs from some other site
|
|
284 and it contains a site-init.el or site-load.el file, consider
|
|
285 deleting that file.
|
|
286 4) getting the wrong .el or .elc files
|
|
287 (not from the directory you expected).
|
|
288 5) deleting some .elc files that are supposed to exist.
|
|
289 This would cause the source files (.el files) to be
|
|
290 loaded instead. They take up more room, so you lose.
|
|
291 6) a bug in the Emacs distribution which underestimates
|
|
292 the space required.
|
|
293
|
|
294 If the need for more space is legitimate, change the definition
|
|
295 of PURESIZE in puresize.h.
|
|
296
|
|
297 But in some of the cases listed above, this problem is a consequence
|
|
298 of something else that is wrong. Be sure to check and fix the real
|
|
299 problem.
|
|
300
|
|
301 * Changes made to .el files do not take effect.
|
|
302
|
|
303 You may have forgotten to recompile them into .elc files.
|
|
304 Then the old .elc files will be loaded, and your changes
|
|
305 will not be seen. To fix this, do M-x byte-recompile-directory
|
|
306 and specify the directory that contains the Lisp files.
|
|
307
|
|
308 * The dumped Emacs (xemacs) crashes when run, trying to write pure data.
|
|
309
|
|
310 Two causes have been seen for such problems.
|
|
311
|
|
312 1) On a system where getpagesize is not a system call, it is defined
|
|
313 as a macro. If the definition (in both unexec.c and malloc.c) is wrong,
|
|
314 it can cause problems like this. You might be able to find the correct
|
|
315 value in the man page for a.out (5).
|
|
316
|
|
317 2) Some systems allocate variables declared static among the
|
|
318 initialized variables. Emacs makes all initialized variables in most
|
|
319 of its files pure after dumping, but the variables declared static and
|
|
320 not initialized are not supposed to be pure. On these systems you
|
|
321 may need to add "#define static" to the m- or the s- file.
|
|
322
|
|
323 * Compilation errors on VMS.
|
|
324
|
|
325 You will get warnings when compiling on VMS because there are
|
|
326 variable names longer than 32 (or whatever it is) characters.
|
|
327 This is not an error. Ignore it.
|
|
328
|
|
329 VAX C does not support #if defined(foo). Uses of this construct
|
|
330 were removed, but some may have crept back in. They must be rewritten.
|
|
331
|
|
332 There is a bug in the C compiler which fails to sign extend characters
|
|
333 in conditional expressions. The bug is:
|
|
334 char c = -1, d = 1;
|
|
335 int i;
|
|
336
|
|
337 i = d ? c : d;
|
|
338 The result is i == 255; the fix is to typecast the char in the
|
|
339 conditional expression as an (int). Known occurrences of such
|
|
340 constructs in Emacs have been fixed.
|
|
341
|
|
342 * rmail gets error getting new mail
|
|
343
|
|
344 rmail gets new mail from /usr/spool/mail/$USER using a program
|
|
345 called `movemail'. This program interlocks with /bin/mail using
|
|
346 the protocol defined by /bin/mail.
|
|
347
|
|
348 There are two different protocols in general use. One of them uses
|
|
349 the `flock' system call. The other involves creating a lock file;
|
|
350 `movemail' must be able to write in /usr/spool/mail in order to do
|
|
351 this. You control which one is used by defining, or not defining,
|
|
352 the macro MAIL_USE_FLOCK in config.h or the m- or s- file it includes.
|
|
353 IF YOU DON'T USE THE FORM OF INTERLOCKING THAT IS NORMAL ON YOUR
|
|
354 SYSTEM, YOU CAN LOSE MAIL!
|
|
355
|
|
356 If your system uses the lock file protocol, and fascist restrictions
|
|
357 prevent ordinary users from writing the lock files in /usr/spool/mail,
|
|
358 you may need to make `movemail' setgid to a suitable group such as
|
|
359 `mail'. You can use these commands (as root):
|
|
360
|
|
361 chgrp mail movemail
|
|
362 chmod 2755 movemail
|
|
363
|
|
364 * Emacs won't work with X-windows if the value of DISPLAY is HOSTNAME:0.
|
|
365 * GNUs can't make contact with the specified host for nntp.
|
|
366
|
|
367 Some people have found that Emacs was unable to connect to the local
|
|
368 host by name, as in DISPLAY=prep:0 if you are running on prep, but
|
|
369 could handle DISPLAY=unix:0. Here is what tale@rpi.edu said:
|
|
370
|
|
371 Seems as
|
|
372 though gethostbyname was bombing somewhere along the way. Well, we
|
|
373 had just upgrade from SunOS 3.5 (which X11 was built under) to SunOS
|
|
374 4.0.1. Any new X applications which tried to be built with the pre
|
|
375 OS-upgrade libraries had the same problems which Emacs was having.
|
|
376 Missing /etc/resolv.conf for a little while (when one of the libraries
|
|
377 was built?) also might have had a hand in it.
|
|
378
|
|
379 The result of all of this (with some speculation) was that we rebuilt
|
|
380 X and then rebuilt Emacs with the new libraries. Works as it should
|
|
381 now. Hoorah.
|
|
382
|
|
383 If you have already installed the name resolver in the file libresolv.a,
|
|
384 then you need to compile Emacs to use that library. The easiest way to
|
|
385 do this is to add to config.h a definition of LIBS_SYSTEM, LIBS_MACHINE
|
|
386 or LIB_STANDARD which uses -lresolv. Watch out! If you redefine a macro
|
|
387 that is already in use in your configuration to supply some other libraries,
|
|
388 be careful not to lose the others.
|
|
389
|
|
390 Thus, you could start by adding this to config.h:
|
|
391
|
|
392 #define LIBS_SYSTEM -lresolv
|
|
393
|
|
394 Then if this gives you an error for redefining a macro, and you see that
|
|
395 the s- file defines LIBS_SYSTEM as -lfoo -lbar, you could change config.h
|
|
396 again to say this:
|
|
397
|
|
398 #define LIBS_SYSTEM -lresolv -lfoo -lbar
|
|
399
|
|
400 * Emacs spontaneously displays "I-search: " at the bottom of the screen.
|
|
401
|
|
402 This means that Control-S/Control-Q "flow control" is being used.
|
|
403 C-s/C-q flow control is bad for Emacs editors because it takes away
|
|
404 C-s and C-q as user commands. Since editors do not output long streams
|
|
405 of text without user commands, there is no need for a user-issuable
|
|
406 "stop output" command in an editor; therefore, a properly designed
|
|
407 flow control mechanism would transmit all possible input characters
|
|
408 without interference. Designing such a mechanism is easy, for a person
|
|
409 with at least half a brain.
|
|
410
|
|
411 There are three possible reasons why flow control could be taking place:
|
|
412
|
|
413 1) Terminal has not been told to disable flow control
|
|
414 2) Insufficient padding for the terminal in use
|
|
415 3) Some sort of terminal concentrator or line switch is responsible
|
|
416
|
|
417 First of all, many terminals have a set-up mode which controls
|
|
418 whether they generate flow control characters. This must be
|
|
419 set to "no flow control" in order for Emacs to work. Sometimes
|
|
420 there is an escape sequence that the computer can send to turn
|
|
421 flow control off and on. If so, perhaps the termcap `ti' string
|
|
422 should turn flow control off, and the `te' string should turn it on.
|
|
423
|
|
424 Once the terminal has been told "no flow control", you may find it
|
|
425 needs more padding. The amount of padding Emacs sends is controlled
|
|
426 by the termcap entry for the terminal in use, and by the output baud
|
|
427 rate as known by the kernel. The shell command `stty' will print
|
|
428 your output baud rate; `stty' with suitable arguments will set it if
|
|
429 it is wrong. Setting to a higher speed causes increased padding. If
|
|
430 the results are wrong for the correct speed, there is probably a
|
|
431 problem in the termcap entry. You must speak to a local Unix wizard
|
|
432 to fix this. Perhaps you are just using the wrong terminal type.
|
|
433
|
|
434 For terminals that lack a "no flow control" mode, sometimes just
|
|
435 giving lots of padding will prevent actual generation of flow control
|
|
436 codes. You might as well try it.
|
|
437
|
|
438 If you are really unlucky, your terminal is connected to the computer
|
|
439 through a concentrator which sends flow control to the computer, or it
|
|
440 insists on sending flow control itself no matter how much padding you
|
|
441 give it. You are screwed! You should replace the terminal or
|
|
442 concentrator with a properly designed one. In the mean time,
|
|
443 some drastic measures can make Emacs semi-work.
|
|
444
|
|
445 One drastic measure to ignore C-s and C-q, while sending enough
|
|
446 padding that the terminal will not really lose any output.
|
|
447 Ignoring C-s and C-q can be done by using keyboard-translate-table
|
|
448 to map them into an undefined character such as C-^ or C-\. Sending
|
|
449 lots of padding is done by changing the termcap entry. Here is how
|
|
450 to make such a keyboard-translate-table:
|
|
451
|
|
452 (let ((the-table (make-string 128 0)))
|
|
453 ;; Default is to translate each character into itself.
|
|
454 (let ((i 0))
|
|
455 (while (< i 128)
|
|
456 (aset the-table i i)
|
|
457 (setq i (1+ i))))
|
|
458 ;; Swap C-s with C-\
|
|
459 (aset the-table ?\C-\\ ?\C-s)
|
|
460 (aset the-table ?\C-s ?\C-\\)
|
|
461 ;; Swap C-q with C-^
|
|
462 (aset the-table ?\C-^ ?\C-q)
|
|
463 (aset the-table ?\C-q ?\C-^)
|
|
464 (setq keyboard-translate-table the-table))
|
|
465
|
|
466 An even more drastic measure is to make Emacs use flow control.
|
|
467 To do this, evaluate the Lisp expression (set-input-mode nil t).
|
|
468 Emacs will then interpret C-s and C-q as flow control commands. (More
|
|
469 precisely, it will allow the kernel to do so as it usually does.) You
|
|
470 will lose the ability to use them for Emacs commands. Also, as a
|
|
471 consequence of using CBREAK mode, the terminal's Meta-key, if any,
|
|
472 will not work, and C-g will be liable to cause a loss of output which
|
|
473 will produce garbage on the screen. (These problems apply to 4.2BSD;
|
|
474 they may not happen in 4.3 or VMS, and I don't know what would happen
|
|
475 in sysV.) You can use keyboard-translate-table, as shown above,
|
|
476 to map two other input characters (such as C-^ and C-\) into C-s and
|
|
477 C-q, so that you can still search and quote.
|
|
478
|
|
479 I have no intention of ever redisigning the Emacs command set for
|
|
480 the assumption that terminals use C-s/C-q flow control. This
|
|
481 flow control technique is a bad design, and terminals that need
|
|
482 it are bad merchandise and should not be purchased. If you can
|
|
483 get some use out of GNU Emacs on inferior terminals, I am glad,
|
|
484 but I will not make Emacs worse for properly designed systems
|
|
485 for the sake of inferior systems.
|
|
486
|
|
487 * Control-S and Control-Q commands are ignored completely.
|
|
488
|
|
489 For some reason, your system is using brain-damaged C-s/C-q flow
|
|
490 control despite Emacs's attempts to turn it off. Perhaps your
|
|
491 terminal is connected to the computer through a concentrator
|
|
492 that wants to use flow control.
|
|
493
|
|
494 You should first try to tell the concentrator not to use flow control.
|
|
495 If you succeed in this, try making the terminal work without
|
|
496 flow control, as described in the preceding section.
|
|
497
|
|
498 If that line of approach is not successful, map some other characters
|
|
499 into C-s and C-q using keyboard-translate-table. The example above
|
|
500 shows how to do this with C-^ and C-\.
|
|
501
|
|
502 * Control-S and Control-Q commands are ignored completely on a net connection.
|
|
503
|
|
504 Some versions of rlogin (and possibly telnet) do not pass flow
|
|
505 control characters to the remote system to which they connect.
|
|
506 On such systems, emacs on the remote system cannot disable flow
|
|
507 control on the local system.
|
|
508
|
|
509 One way to cure this is to disable flow control on the local host
|
|
510 (the one running rlogin, not the one running rlogind) using the
|
|
511 stty command, before starting the rlogin process. On many systems,
|
|
512 "stty start u stop u" will do this.
|
|
513
|
|
514 Some versions of tcsh will prevent even this from working. One way
|
|
515 around this is to start another shell before starting rlogin, and
|
|
516 issue the stty command to disable flow control from that shell.
|
|
517
|
|
518 * Screen is updated wrong, but only on one kind of terminal.
|
|
519
|
|
520 This could mean that the termcap entry you are using for that
|
|
521 terminal is wrong, or it could mean that Emacs has a bug handing
|
|
522 the combination of features specified for that terminal.
|
|
523
|
|
524 The first step in tracking this down is to record what characters
|
|
525 Emacs is sending to the terminal. Execute the Lisp expression
|
|
526 (open-termscript "./emacs-script") to make Emacs write all
|
|
527 terminal output into the file ~/emacs-script as well; then do
|
|
528 what makes the screen update wrong, and look at the file
|
|
529 and decode the characters using the manual for the terminal.
|
|
530 There are several possibilities:
|
|
531
|
|
532 1) The characters sent are correct, according to the terminal manual.
|
|
533
|
|
534 In this case, there is no obvious bug in Emacs, and most likely you
|
|
535 need more padding, or possibly the terminal manual is wrong.
|
|
536
|
|
537 2) The characters sent are incorrect, due to an obscure aspect
|
|
538 of the terminal behavior not described in an obvious way
|
|
539 by termcap.
|
|
540
|
|
541 This case is hard. It will be necessary to think of a way for
|
|
542 Emacs to distinguish between terminals with this kind of behavior
|
|
543 and other terminals that behave subtly differently but are
|
|
544 classified the same by termcap; or else find an algorithm for
|
|
545 Emacs to use that avoids the difference. Such changes must be
|
|
546 tested on many kinds of terminals.
|
|
547
|
|
548 3) The termcap entry is wrong.
|
|
549
|
|
550 See the file etc/TERMS for information on changes
|
|
551 that are known to be needed in commonly used termcap entries
|
|
552 for certain terminals.
|
|
553
|
|
554 4) The characters sent are incorrect, and clearly cannot be
|
|
555 right for any terminal with the termcap entry you were using.
|
|
556
|
|
557 This is unambiguously an Emacs bug, and can probably be fixed
|
|
558 in termcap.c, tparam.c, term.c, scroll.c, cm.c or dispnew.c.
|
|
559
|
|
560 * Output from Control-V is slow.
|
|
561
|
|
562 On many bit-map terminals, scrolling operations are fairly slow.
|
|
563 Often the termcap entry for the type of terminal in use fails
|
|
564 to inform Emacs of this. The two lines at the bottom of the screen
|
|
565 before a Control-V command are supposed to appear at the top after
|
|
566 the Control-V command. If Emacs thinks scrolling the lines is fast,
|
|
567 it will scroll them to the top of the screen.
|
|
568
|
|
569 If scrolling is slow but Emacs thinks it is fast, the usual reason is
|
|
570 that the termcap entry for the terminal you are using does not
|
|
571 specify any padding time for the `al' and `dl' strings. Emacs
|
|
572 concludes that these operations take only as much time as it takes to
|
|
573 send the commands at whatever line speed you are using. You must
|
|
574 fix the termcap entry to specify, for the `al' and `dl', as much
|
|
575 time as the operations really take.
|
|
576
|
|
577 Currently Emacs thinks in terms of serial lines which send characters
|
|
578 at a fixed rate, so that any operation which takes time for the
|
|
579 terminal to execute must also be padded. With bit-map terminals
|
|
580 operated across networks, often the network provides some sort of
|
|
581 flow control so that padding is never needed no matter how slow
|
|
582 an operation is. You must still specify a padding time if you want
|
|
583 Emacs to realize that the operation takes a long time. This will
|
|
584 cause padding characters to be sent unnecessarily, but they do
|
|
585 not really cost much. They will be transmitted while the scrolling
|
|
586 is happening and then discarded quickly by the terminal.
|
|
587
|
|
588 Most bit-map terminals provide commands for inserting or deleting
|
|
589 multiple lines at once. Define the `AL' and `DL' strings in the
|
|
590 termcap entry to say how to do these things, and you will have
|
|
591 fast output without wasted padding characters. These strings should
|
|
592 each contain a single %-spec saying how to send the number of lines
|
|
593 to be scrolled. These %-specs are like those in the termcap
|
|
594 `cm' string.
|
|
595
|
|
596 You should also define the `IC' and `DC' strings if your terminal
|
|
597 has a command to insert or delete multiple characters. These
|
|
598 take the number of positions to insert or delete as an argument.
|
|
599
|
|
600 A `cs' string to set the scrolling region will reduce the amount
|
|
601 of motion you see on the screen when part of the screen is scrolled.
|
|
602
|
|
603 * Your Delete key sends a Backspace to the terminal, using an AIXterm.
|
|
604
|
|
605 The solution is to include in your .Xdefaults the lines:
|
|
606
|
|
607 *aixterm.Translations: #override <Key>BackSpace: string(0x7f)
|
|
608 aixterm*ttyModes: erase ^?
|
|
609
|
|
610 This makes your Backspace key send DEL (ASCII 127).
|
|
611
|
|
612 * You type Control-H (Backspace) expecting to delete characters.
|
|
613
|
|
614 Put `stty dec' in your .login file and your problems will disappear
|
|
615 after a day or two.
|
|
616
|
|
617 The choice of Backspace for erasure was based on confusion, caused by
|
|
618 the fact that backspacing causes erasure (later, when you type another
|
|
619 character) on most display terminals. But it is a mistake. Deletion
|
|
620 of text is not the same thing as backspacing followed by failure to
|
|
621 overprint. I do not wish to propagate this confusion by conforming
|
|
622 to it.
|
|
623
|
|
624 For this reason, I believe `stty dec' is the right mode to use,
|
|
625 and I have designed Emacs to go with that. If there were a thousand
|
|
626 other control characters, I would define Control-h to delete as well;
|
|
627 but there are not very many other control characters, and I think
|
|
628 that providing the most mnemonic possible Help character is more
|
|
629 important than adapting to people who don't use `stty dec'.
|
|
630
|
|
631 If you are obstinate about confusing buggy overprinting with deletion,
|
|
632 you can redefine Backspace in your .emacs file:
|
|
633 (global-set-key "\b" 'delete-backward-char)
|
|
634 You may then wish to put the function help-command on some
|
|
635 other key. I leave to you the task of deciding which key.
|
|
636
|
|
637 * Editing files through RFS gives spurious "file has changed" warnings.
|
|
638 It is possible that a change in Emacs 18.37 gets around this problem,
|
|
639 but in case not, here is a description of how to fix the RFS bug that
|
|
640 causes it.
|
|
641
|
|
642 There was a serious pair of bugs in the handling of the fsync() system
|
|
643 call in the RFS server.
|
|
644
|
|
645 The first is that the fsync() call is handled as another name for the
|
|
646 close() system call (!!). It appears that fsync() is not used by very
|
|
647 many programs; Emacs version 18 does an fsync() before closing files
|
|
648 to make sure that the bits are on the disk.
|
|
649
|
|
650 This is fixed by the enclosed patch to the RFS server.
|
|
651
|
|
652 The second, more serious problem, is that fsync() is treated as a
|
|
653 non-blocking system call (i.e., it's implemented as a message that
|
|
654 gets sent to the remote system without waiting for a reply). Fsync is
|
|
655 a useful tool for building atomic file transactions. Implementing it
|
|
656 as a non-blocking RPC call (when the local call blocks until the sync
|
|
657 is done) is a bad idea; unfortunately, changing it will break the RFS
|
|
658 protocol. No fix was supplied for this problem.
|
|
659
|
|
660 (as always, your line numbers may vary)
|
|
661
|
|
662 % rcsdiff -c -r1.2 serversyscall.c
|
|
663 RCS file: RCS/serversyscall.c,v
|
|
664 retrieving revision 1.2
|
|
665 diff -c -r1.2 serversyscall.c
|
|
666 *** /tmp/,RCSt1003677 Wed Jan 28 15:15:02 1987
|
|
667 --- serversyscall.c Wed Jan 28 15:14:48 1987
|
|
668 ***************
|
|
669 *** 163,169 ****
|
|
670 /*
|
|
671 * No return sent for close or fsync!
|
|
672 */
|
|
673 ! if (syscall == RSYS_close || syscall == RSYS_fsync)
|
|
674 proc->p_returnval = deallocate_fd(proc, msg->m_args[0]);
|
|
675 else
|
|
676 {
|
|
677 --- 166,172 ----
|
|
678 /*
|
|
679 * No return sent for close or fsync!
|
|
680 */
|
|
681 ! if (syscall == RSYS_close)
|
|
682 proc->p_returnval = deallocate_fd(proc, msg->m_args[0]);
|
|
683 else
|
|
684 {
|
|
685
|
|
686 * ld complains because `alloca' is not defined on your system.
|
|
687
|
|
688 Alloca is a library function in 4.2bsd, which is used very heavily by
|
|
689 GNU Emacs. Use of malloc instead is very difficult, as you would have
|
|
690 to arrange for the storage to be freed, and do so even in the case of
|
|
691 a longjmp happening inside a subroutine. Many subroutines in Emacs
|
|
692 can do longjmp.
|
|
693
|
|
694 If your system does not support alloca, try defining the symbol
|
|
695 C_ALLOCA in the m-...h file for that machine. This will enable the use
|
|
696 in Emacs of a portable simulation for alloca. But you will find that
|
|
697 Emacs's performance and memory use improve if you write a true
|
|
698 alloca in assembler language.
|
|
699
|
|
700 alloca (N) should return the address of an N-byte block of memory
|
|
701 added dynamically to the current stack frame.
|
|
702
|
|
703 * Vax C compiler bugs affecting Emacs.
|
|
704
|
|
705 You may get one of these problems compiling Emacs:
|
|
706
|
|
707 foo.c line nnn: compiler error: no table entry for op STASG
|
|
708 foo.c: fatal error in /lib/ccom
|
|
709
|
|
710 These are due to bugs in the C compiler; the code is valid C.
|
|
711 Unfortunately, the bugs are unpredictable: the same construct
|
|
712 may compile properly or trigger one of these bugs, depending
|
|
713 on what else is in the source file being compiled. Even changes
|
|
714 in header files that should not affect the file being compiled
|
|
715 can affect whether the bug happens. In addition, sometimes files
|
|
716 that compile correctly on one machine get this bug on another machine.
|
|
717
|
|
718 As a result, it is hard for me to make sure this bug will not affect
|
|
719 you. I have attempted to find and alter these constructs, but more
|
|
720 can always appear. However, I can tell you how to deal with it if it
|
|
721 should happen. The bug comes from having an indexed reference to an
|
|
722 array of Lisp_Objects, as an argument in a function call:
|
|
723 Lisp_Object *args;
|
|
724 ...
|
|
725 ... foo (5, args[i], ...)...
|
|
726 putting the argument into a temporary variable first, as in
|
|
727 Lisp_Object *args;
|
|
728 Lisp_Object tem;
|
|
729 ...
|
|
730 tem = args[i];
|
|
731 ... foo (r, tem, ...)...
|
|
732 causes the problem to go away.
|
|
733 The `contents' field of a Lisp vector is an array of Lisp_Objects,
|
|
734 so you may see the problem happening with indexed references to that.
|
|
735
|
|
736 * 68000 C compiler problems
|
|
737
|
|
738 Various 68000 compilers have different problems.
|
|
739 These are some that have been observed.
|
|
740
|
|
741 ** Using value of assignment expression on union type loses.
|
|
742 This means that x = y = z; or foo (x = z); does not work
|
|
743 if x is of type Lisp_Object.
|
|
744
|
|
745 ** "cannot reclaim" error.
|
|
746
|
|
747 This means that an expression is too complicated. You get the correct
|
|
748 line number in the error message. The code must be rewritten with
|
|
749 simpler expressions.
|
|
750
|
|
751 ** XCONS, XSTRING, etc macros produce incorrect code.
|
|
752
|
|
753 If temacs fails to run at all, this may be the cause.
|
|
754 Compile this test program and look at the assembler code:
|
|
755
|
|
756 struct foo { char x; unsigned int y : 24; };
|
|
757
|
|
758 lose (arg)
|
|
759 struct foo arg;
|
|
760 {
|
|
761 test ((int *) arg.y);
|
|
762 }
|
|
763
|
|
764 If the code is incorrect, your compiler has this problem.
|
|
765 In the XCONS, etc., macros in lisp.h you must replace (a).u.val with
|
|
766 ((a).u.val + coercedummy) where coercedummy is declared as int.
|
|
767
|
|
768 This problem will not happen if the m-...h file for your type
|
|
769 of machine defines NO_UNION_TYPE. That is the recommended setting now.
|
|
770
|
|
771 * C compilers lose on returning unions
|
|
772
|
|
773 I hear that some C compilers cannot handle returning
|
|
774 a union type. Most of the functions in GNU Emacs return
|
|
775 type Lisp_Object, which is currently defined as a union.
|
|
776
|
|
777 This problem will not happen if the m-...h file for your type
|
|
778 of machine defines NO_UNION_TYPE. That is the recommended setting now.
|
|
779
|