mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
* env.el (getenv): When FRAME is non-nil, pass the frame environment
to `getenv-internal', not the frame. (Bug#2259)
This commit is contained in:
parent
eb8c6ab3ad
commit
263903f794
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2009-02-10 Eric Hanchrow <eric.hanchrow@gmail.com>
|
||||
|
||||
* env.el (getenv): When FRAME is non-nil, pass the frame environment
|
||||
to `getenv-internal', not the frame. (Bug#2259)
|
||||
|
||||
2009-02-10 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* descr-text.el (describe-char-display): On terminal, if terminal
|
||||
|
|
|
|||
|
|
@ -198,7 +198,9 @@ in the environment list of the selected frame."
|
|||
(encode-coding-string
|
||||
variable locale-coding-system)
|
||||
variable)
|
||||
frame)))
|
||||
(and frame
|
||||
(assq 'environment
|
||||
(frame-parameters frame))))))
|
||||
(if (and enable-multibyte-characters value)
|
||||
(setq value (decode-coding-string value locale-coding-system)))
|
||||
(when (interactive-p)
|
||||
|
|
|
|||
Loading…
Reference in a new issue