aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term/README
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/term/README')
-rw-r--r--lisp/term/README7
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
8yield a file that exists, the previous hyphen is stripped, and so on until all 8yield a file that exists, the previous hyphen is stripped, and so on until all
9hyphens are gone. For example, if the terminal type is `aaa-48-foo', Emacs 9hyphens are gone. For example, if the terminal type is `aaa-48-foo', Emacs
10will try first `term/aaa-48-foo.el', then `term/aaa-48.el' and finally 10will 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
12named terminal-init-TERMINALNAME (eg terminal-init-aaa-48 for
13term/aaa-48.el) that Emacs will call in order to initialize the
14terminal. The terminal files should not contain any top level forms
15that are executed when the file is loaded, all the initialization
16actions 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
14mind. 19mind.