diff options
| author | Robert Pluim | 2023-02-17 16:19:43 +0100 |
|---|---|---|
| committer | Robert Pluim | 2023-02-17 16:20:45 +0100 |
| commit | dabd7feb950ef2dba0ce23ec74c5b141cff96a55 (patch) | |
| tree | a7bb60ba35bd2c015222a4504c178227ac2bb690 | |
| parent | d5bf26f488b7968feed9f43e612a90da2aab15a8 (diff) | |
| download | emacs-dabd7feb950ef2dba0ce23ec74c5b141cff96a55.tar.gz emacs-dabd7feb950ef2dba0ce23ec74c5b141cff96a55.zip | |
; Fix previous change
| -rw-r--r-- | lisp/env.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/env.el b/lisp/env.el index a9d1d27e1ee..faafcb6250f 100644 --- a/lisp/env.el +++ b/lisp/env.el | |||
| @@ -204,8 +204,8 @@ parameter. | |||
| 204 | Otherwise, this function searches `process-environment' for | 204 | Otherwise, this function searches `process-environment' for |
| 205 | VARIABLE. If it is not found there, then it continues the search | 205 | VARIABLE. If it is not found there, then it continues the search |
| 206 | in the environment list of the selected frame." | 206 | in the environment list of the selected frame." |
| 207 | (interactive (list (read-envvar-name "Get environment variable: " t))) | ||
| 208 | (declare (side-effect-free t)) | 207 | (declare (side-effect-free t)) |
| 208 | (interactive (list (read-envvar-name "Get environment variable: " t))) | ||
| 209 | (let ((value (getenv-internal (if (multibyte-string-p variable) | 209 | (let ((value (getenv-internal (if (multibyte-string-p variable) |
| 210 | (encode-coding-string | 210 | (encode-coding-string |
| 211 | variable locale-coding-system) | 211 | variable locale-coding-system) |