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
9fb2cdc5
Commit
9fb2cdc5
authored
Oct 06, 2009
by
Glenn Morris
Browse files
(tramp-handle-start-file-process): Move tramp-error call
inside with-parsed... macro so that `v' is defined.
parent
7938ab41
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/net/tramp.el
lisp/net/tramp.el
+3
-3
No files found.
lisp/ChangeLog
View file @
9fb2cdc5
2009-10-06 Glenn Morris <rgm@gnu.org>
* net/tramp.el (tramp-handle-start-file-process): Move tramp-error call
inside with-parsed... macro so that `v' is defined.
* progmodes/f90.el (f90-end-of-block, f90-beginning-of-block):
* progmodes/fortran.el (fortran-end-of-block)
(fortran-beginning-of-block):
...
...
lisp/net/tramp.el
View file @
9fb2cdc5
...
...
@@ -3999,10 +3999,10 @@ beginning of local filename are not substituted."
;; connection has been setup.
(defun tramp-handle-start-file-process (name buffer program &rest args)
"Like `start-file-process' for Tramp files."
(unless (stringp program)
(tramp-error
v 'file-error "pty association is not supported for `%s'" name))
(with-parsed-tramp-file-name default-directory nil
(unless (stringp program)
(tramp-error
v 'file-error "pty association is not supported for `%s'" name))
(unwind-protect
(let ((command (format "cd %s; exec %s"
(tramp-shell-quote-argument localname)
...
...
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