home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / etc / MSDOS < prev    next >
Text File  |  1996-09-28  |  2KB  |  58 lines

  1. This file describes use of Emacs 19 on MS-DOG.
  2.  
  3. * The commands `mode25' and `mode4350' change the number of 
  4. lines of the screen.  You get 43 lines on an EGA monitor, 50 on
  5. a VGA monitor.
  6.  
  7. * Ctrl-Break takes the place of C-g.  Using compilers prior to
  8. djgpp 1.11 maint 5, you should not use Ctrl-Break unless you
  9. run under DPMI (i.e., you are using Windows, Qdpmi, ...)
  10.  
  11. Actually, if Emacs is in an endless loop, you might as well go
  12. ahead and try.  Usually it works, but sometimes Emacs crashes
  13. with a stack trace.  This is not an Emacs bug.
  14.  
  15. * Character codes 0200-0237 are self-inserting.
  16.  
  17. * The keyboard support is made as X-like as possible.  This means
  18. that events like M-S-f1 will be generated (by Shift + Alt + f1).
  19.  
  20. * Mouse support is partially implemented.
  21.  
  22. * The `compile' command works on MS-DOG, but it waits for the
  23. compilation to finish before letting you edit again.  There's no other
  24. way to do it, given the lack of asynchronous processes.
  25.  
  26. * The function `expand-file-name' maps upper case letters to lower
  27. case letters, since MS-DOG does not distinguish.
  28.  
  29. * The new buffer-local variable `buffer-file-type' controls whether a
  30. file contains text (newlines will be written as CR+LF) or binary data
  31. (newlines written as LF).  Text is specified by nil, and binary by t.
  32. The status of a buffer can be seen in the mode line as "T:" or "B:"
  33. before the major mode.
  34.  
  35. Normally `buffer-file-type' is set automatically from the variable
  36. `file-name-buffer-file-type-alist' which is an alist mapping regexps
  37. to file types.
  38.  
  39. You can visit a file explicitly as text, or as binary, using the
  40. commands `find-file-binary' and `find-file-text'.
  41.  
  42. * New variables `binary-process-input' and `binary-process-output'
  43. control whether temporary files are opened as binary or as text
  44. files.  nil means text, and t means binary.  The difference is
  45. translation of CR+LF to LF and C-z handling.
  46.  
  47. * Environment variables "HOME", "EMACSPATH", "TERM", "SHELL",
  48. "USER", "NAME", and "TZ" are given default values as suitable
  49. for a single user system.  See src/msdos.c for details.
  50.  
  51. * The function `substitute-in-file-name' disregards case in
  52. environment variables, as the MS-DOG SET command does.
  53.  
  54. * The variable `msdos-shells' contains a list of commands that
  55. are shells.  This variable is used to convert to map Unix-like
  56. commands like "$SHELL -c /some/command" to MS-DOG commands
  57. like "$SHELL /c \some\command".
  58.