aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
authorJoakim Verona2013-02-26 00:03:36 +0100
committerJoakim Verona2013-02-26 00:03:36 +0100
commit6f75e5103f0b1d6395fb5b0fea2a4a9c9f4601f7 (patch)
tree44f49e30237e3a897287c8b05c807c3212e464da /src/eval.c
parent1b907e3f10d78d2bc58e2c8fd707d29b44498865 (diff)
parentd9bb0d4811696c94affc751a2de1906d3b54baf9 (diff)
downloademacs-6f75e5103f0b1d6395fb5b0fea2a4a9c9f4601f7.tar.gz
emacs-6f75e5103f0b1d6395fb5b0fea2a4a9c9f4601f7.zip
auto upstream
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c
index 030bf14bcea..5db6f9d0bf3 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -1898,7 +1898,7 @@ If LEXICAL is t, evaluate using lexical scoping. */)
1898{ 1898{
1899 ptrdiff_t count = SPECPDL_INDEX (); 1899 ptrdiff_t count = SPECPDL_INDEX ();
1900 specbind (Qinternal_interpreter_environment, 1900 specbind (Qinternal_interpreter_environment,
1901 NILP (lexical) ? Qnil : Fcons (Qt, Qnil)); 1901 CONSP (lexical) || NILP (lexical) ? lexical : Fcons (Qt, Qnil));
1902 return unbind_to (count, eval_sub (form)); 1902 return unbind_to (count, eval_sub (form));
1903} 1903}
1904 1904