From f206348f8ae02249adcc840de1351b159c459d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20K=C3=BChling?= Date: Sat, 18 Dec 2010 21:00:35 +0100 Subject: [PATCH] Fix Emacs bug resetting all environment variables on startup. --- emacs/patches/010-fix-init-env.patch | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 emacs/patches/010-fix-init-env.patch diff --git a/emacs/patches/010-fix-init-env.patch b/emacs/patches/010-fix-init-env.patch new file mode 100644 index 0000000..a03a9c4 --- /dev/null +++ b/emacs/patches/010-fix-init-env.patch @@ -0,0 +1,15 @@ +Index: emacs23.2-openwrt-q/src/emacs.c +=================================================================== +--- emacs23.2-openwrt-q.orig/src/emacs.c 2010-12-18 20:24:35.000000000 +0100 ++++ emacs23.2-openwrt-q/src/emacs.c 2010-12-18 20:28:41.000000000 +0100 +@@ -1735,6 +1735,10 @@ + #endif /* HAVE_NTGUI */ + } + ++ /* syms_of_callproc() resets process-environment to nil; generating it again ++ * here, as workaround (probably only hits us since we're not dumping */ ++ set_initial_environment(); ++ + init_charset (); + + init_editfns (); /* init_process uses Voperating_system_release. */