* lisp/server.el (server-process-filter): Remember dir in the
process's `server-client-directory' properties.
This commit is contained in:
parent
a35e580cbc
commit
8c4f2952d4
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-06-25 Jim Diamond <Jim.Diamond@AcadiaU.ca> (tiny change)
|
||||
|
||||
* server.el (server-process-filter): Remember dir in the
|
||||
process's `server-client-directory' properties.
|
||||
|
||||
2012-06-24 Chong Yidong <cyd@gnu.org>
|
||||
|
||||
* xml.el (xml-parse-tag): Correctly handle comment embedded in
|
||||
|
|
|
@ -1164,7 +1164,8 @@ The following commands are accepted by the client:
|
|||
(setq dir (pop args-left))
|
||||
(if coding-system
|
||||
(setq dir (decode-coding-string dir coding-system)))
|
||||
(setq dir (command-line-normalize-file-name dir)))
|
||||
(setq dir (command-line-normalize-file-name dir))
|
||||
(process-put proc 'server-client-directory dir))
|
||||
|
||||
;; Unknown command.
|
||||
(arg (error "Unknown command: %s" arg))))
|
||||
|
|
Loading…
Add table
Reference in a new issue