aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Pluim2023-02-17 16:19:43 +0100
committerRobert Pluim2023-02-17 16:20:45 +0100
commitdabd7feb950ef2dba0ce23ec74c5b141cff96a55 (patch)
treea7bb60ba35bd2c015222a4504c178227ac2bb690
parentd5bf26f488b7968feed9f43e612a90da2aab15a8 (diff)
downloademacs-dabd7feb950ef2dba0ce23ec74c5b141cff96a55.tar.gz
emacs-dabd7feb950ef2dba0ce23ec74c5b141cff96a55.zip
; Fix previous change
-rw-r--r--lisp/env.el2
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.
204Otherwise, this function searches `process-environment' for 204Otherwise, this function searches `process-environment' for
205VARIABLE. If it is not found there, then it continues the search 205VARIABLE. If it is not found there, then it continues the search
206in the environment list of the selected frame." 206in 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)