mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
* server.el (server-with-environment): Don't fail for negative entries in ENV.
This commit is contained in:
parent
adab88bd5a
commit
abab01f2e8
@ -1,4 +1,9 @@
|
||||
2009-02-10 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
2009-02-11 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
* server.el (server-with-environment):
|
||||
Don't fail for negative entries in ENV.
|
||||
|
||||
2009-02-11 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* vc-dir.el (vc-dir-filename-mouse-map): Rename from vc-dir-mouse-map.
|
||||
(vc-default-dir-printer): Add a comment about updating this function.
|
||||
|
@ -240,9 +240,9 @@ ENV should be in the same format as `process-environment'."
|
||||
`(let ((process-environment process-environment))
|
||||
(dolist (,var ,vars)
|
||||
(let ((,value (getenv-internal ,var ,env)))
|
||||
(push (if (null ,value)
|
||||
,var
|
||||
(concat ,var "=" ,value))
|
||||
(push (if (stringp ,value)
|
||||
(concat ,var "=" ,value)
|
||||
,var)
|
||||
process-environment)))
|
||||
(progn ,@body))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user