Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
eb6e9899
Commit
eb6e9899
authored
Jul 24, 1992
by
Richard M. Stallman
Browse files
*** empty log message ***
parent
1bd60093
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
lisp/comint.el
lisp/comint.el
+1
-0
lisp/simple.el
lisp/simple.el
+2
-2
lisp/textmodes/tex-mode.el
lisp/textmodes/tex-mode.el
+2
-1
No files found.
lisp/comint.el
View file @
eb6e9899
...
...
@@ -300,6 +300,7 @@ name of one"
;;; Note that this guy, unlike shell.el's make-shell, barfs if you pass it ()
;;; for the second argument (program).
;;;###autoload
(
defun
make-comint
(
name
program
&optional
startfile
&rest
switches
)
(
let
((
buffer
(
get-buffer-create
(
concat
"*"
name
"*"
))))
;; If no process, or nuked process, crank up a new one and put buffer in
...
...
lisp/simple.el
View file @
eb6e9899
...
...
@@ -378,8 +378,8 @@ The command is placed in the minibuffer as a Lisp form for editing.
The result is executed, repeating the command as changed.
If the command has been changed or is not the most recent previous command
it is added to the front of the command history.
Whilst editing the command, the following commands are available:
\\{repeat-complex-command-map}
"
You can use the minibuffer history commands \\<minibuffer-local-map>\\[next-history-element] and \\[previous-history-element]
to get different commands to edit and resubmit.
"
(
interactive
"p"
)
(
let
((
elt
(
nth
(
1-
arg
)
command-history
))
(
minibuffer-history-position
arg
)
...
...
lisp/textmodes/tex-mode.el
View file @
eb6e9899
...
...
@@ -26,7 +26,8 @@
;;; Code:
(
require
'comint
)
;; This was a pain. Now, make-comint should autoload comint.
;; (require 'comint)
(
defvar
tex-shell-file-name
nil
"*If non-nil, is file name to use for the subshell in which TeX is run."
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment