changeset 83568:21e8c3e3274f

(getenv): Fix reverted by demand of Dan Nicolaescu because it exposes further problems.
author David Kastrup <dak@gnu.org>
date Mon, 14 May 2007 22:29:58 +0000
parents 0f553a433d34
children 86395c339701
files lisp/env.el
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/env.el	Sun May 13 20:54:15 2007 +0000
+++ b/lisp/env.el	Mon May 14 22:29:58 2007 +0000
@@ -212,8 +212,7 @@
   (let ((value (getenv-internal (if (multibyte-string-p variable)
 				    (encode-coding-string
 				     variable locale-coding-system)
-				  variable)
-				frame)))
+				  variable))))
     (if (and enable-multibyte-characters value)
 	(setq value (decode-coding-string value locale-coding-system)))
     (when (interactive-p)