163
|
1 ;;; DO NOT MODIFY THIS FILE
|
183
|
2 (if (featurep 'eterm-autoloads) (error "Already loaded"))
|
163
|
3
|
|
4 ;;;### (autoloads (term make-term) "term" "eterm/term.el")
|
|
5
|
|
6 (autoload 'make-term "term" "\
|
|
7 Make a term process NAME in a buffer, running PROGRAM.
|
|
8 The name of the buffer is made by surrounding NAME with `*'s.
|
|
9 If there is already a running process in that buffer, it is not restarted.
|
|
10 Optional third arg STARTFILE is the name of a file to send the contents of to
|
|
11 the process. Any more args are arguments to PROGRAM." nil nil)
|
|
12
|
|
13 (autoload 'term "term" "\
|
|
14 Start a terminal-emulator in a new buffer." t nil)
|
|
15
|
|
16 ;;;***
|
|
17
|
|
18 ;;;### (autoloads (tperldb txdb tdbx tsdb tgdb) "tgud" "eterm/tgud.el")
|
|
19
|
|
20 (autoload 'tgdb "tgud" "\
|
|
21 Run gdb on program FILE in buffer *tgud-FILE*.
|
|
22 The directory containing FILE becomes the initial working directory
|
|
23 and source-file directory for your debugger." t nil)
|
|
24
|
|
25 (autoload 'tsdb "tgud" "\
|
|
26 Run sdb on program FILE in buffer *tgud-FILE*.
|
|
27 The directory containing FILE becomes the initial working directory
|
|
28 and source-file directory for your debugger." t nil)
|
|
29
|
|
30 (autoload 'tdbx "tgud" "\
|
|
31 Run dbx on program FILE in buffer *tgud-FILE*.
|
|
32 The directory containing FILE becomes the initial working directory
|
|
33 and source-file directory for your debugger." t nil)
|
|
34
|
|
35 (autoload 'txdb "tgud" "\
|
|
36 Run xdb on program FILE in buffer *tgud-FILE*.
|
|
37 The directory containing FILE becomes the initial working directory
|
|
38 and source-file directory for your debugger.
|
|
39
|
|
40 You can set the variable 'tgud-xdb-directories' to a list of program source
|
|
41 directories if your program contains sources from more than one directory." t nil)
|
|
42
|
|
43 (autoload 'tperldb "tgud" "\
|
|
44 Run perldb on program FILE in buffer *tgud-FILE*.
|
|
45 The directory containing FILE becomes the initial working directory
|
|
46 and source-file directory for your debugger." t nil)
|
|
47
|
|
48 ;;;***
|
|
49
|
|
50 ;;;### (autoloads (tshell) "tshell" "eterm/tshell.el")
|
|
51
|
|
52 (defvar tshell-prompt-pattern "^[^#$%>\n]*[#$%>] *" "\
|
|
53 Regexp to match prompts in the inferior shell.
|
|
54 Defaults to \"^[^#$%>\\n]*[#$%>] *\", which works pretty well.
|
|
55 This variable is used to initialise `term-prompt-regexp' in the
|
|
56 shell buffer.
|
|
57
|
|
58 The pattern should probably not match more than one line. If it does,
|
|
59 tshell-mode may become confused trying to distinguish prompt from input
|
|
60 on lines which don't start with a prompt.
|
|
61
|
|
62 This is a fine thing to set in your `.emacs' file.")
|
|
63
|
|
64 (autoload 'tshell "tshell" "\
|
|
65 Run an inferior shell, with I/O through buffer *shell*.
|
|
66 If buffer exists but shell process is not running, make new shell.
|
|
67 If buffer exists and shell process is running, just switch to buffer `*shell*'.
|
|
68 Program used comes from variable `explicit-shell-file-name',
|
|
69 or (if that is nil) from the ESHELL environment variable,
|
|
70 or else from SHELL if there is no ESHELL.
|
|
71 If a file `~/.emacs_SHELLNAME' exists, it is given as initial input
|
|
72 (Note that this may lose due to a timing error if the shell
|
|
73 discards input when it starts up.)
|
|
74 The buffer is put in Tshell mode, giving commands for sending input
|
|
75 and controlling the subjobs of the shell. See `tshell-mode'.
|
|
76 See also the variable `tshell-prompt-pattern'.
|
|
77
|
|
78 The shell file name (sans directories) is used to make a symbol name
|
|
79 such as `explicit-csh-args'. If that symbol is a variable,
|
|
80 its value is used as a list of arguments when invoking the shell.
|
|
81 Otherwise, one argument `-i' is passed to the shell.
|
|
82
|
|
83 \(Type \\[describe-mode] in the shell buffer for a list of commands.)" t nil)
|
|
84
|
|
85 ;;;***
|
|
86
|
|
87 (provide 'eterm-autoloads)
|