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
4df54202
Commit
4df54202
authored
Oct 26, 2002
by
Richard M. Stallman
Browse files
(shell): Look for .emacs_SHELL under ~/.emacs.d after looking in ~.
parent
a04d5983
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
lisp/shell.el
lisp/shell.el
+2
-0
No files found.
lisp/shell.el
View file @
4df54202
...
...
@@ -506,6 +506,8 @@ Otherwise, one argument `-i' is passed to the shell.
(
name
(
file-name-nondirectory
prog
))
(
startfile
(
concat
"~/.emacs_"
name
))
(
xargs-name
(
intern-soft
(
concat
"explicit-"
name
"-args"
))))
(
if
(
not
(
file-exists-p
startfile
))
(
setq
startfile
(
concat
"~/.emacs.d/.emacs_"
name
)))
(
apply
'make-comint-in-buffer
"shell"
buffer
prog
(
if
(
file-exists-p
startfile
)
startfile
)
(
if
(
and
xargs-name
(
boundp
xargs-name
))
...
...
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