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