diff options
Diffstat (limited to 'lisp/term/README')
| -rw-r--r-- | lisp/term/README | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/term/README b/lisp/term/README index 76c64435af1..581f321d3ba 100644 --- a/lisp/term/README +++ b/lisp/term/README | |||
| @@ -8,7 +8,12 @@ that exists, the last hyphen and what follows it is stripped. If that doesn't | |||
| 8 | yield a file that exists, the previous hyphen is stripped, and so on until all | 8 | yield a file that exists, the previous hyphen is stripped, and so on until all |
| 9 | hyphens are gone. For example, if the terminal type is `aaa-48-foo', Emacs | 9 | hyphens are gone. For example, if the terminal type is `aaa-48-foo', Emacs |
| 10 | will try first `term/aaa-48-foo.el', then `term/aaa-48.el' and finally | 10 | will try first `term/aaa-48-foo.el', then `term/aaa-48.el' and finally |
| 11 | `term/aaa.el'. | 11 | `term/aaa.el'. Each terminal specific file should contain a function |
| 12 | named terminal-init-TERMINALNAME (eg terminal-init-aaa-48 for | ||
| 13 | term/aaa-48.el) that Emacs will call in order to initialize the | ||
| 14 | terminal. The terminal files should not contain any top level forms | ||
| 15 | that are executed when the file is loaded, all the initialization | ||
| 16 | actions are performed by the terminal-init-TERMINALNAME functions. | ||
| 12 | 17 | ||
| 13 | When writing terminal packages, there are some things it is good to keep in | 18 | When writing terminal packages, there are some things it is good to keep in |
| 14 | mind. | 19 | mind. |