From: Po Lu Date: Tue, 8 Apr 2025 01:46:16 +0000 (+0800) Subject: ; * src/lread.c (get_lexical_binding): Fix coding style. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1ba555c056ea83ab708552e66015231ba47dc95d;p=emacs.git ; * src/lread.c (get_lexical_binding): Fix coding style. (cherry picked from commit 9b7402c5fdbae1ec88c47101e9e8f74fcbffe5ec) --- diff --git a/src/lread.c b/src/lread.c index 445e5cd1fba..d39330bd0eb 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1275,12 +1275,15 @@ static Lisp_Object get_lexical_binding (Lisp_Object stream, Lisp_Object from) { lexical_cookie_t lexc = lisp_file_lexical_cookie (stream); - return (lexc == Cookie_Lex ? Qt - : lexc == Cookie_Dyn ? Qnil - : (NILP (from) /* Loading a byte-compiled file. */ - || NILP (Vinternal__get_default_lexical_binding_function) - ? Fdefault_toplevel_value (Qlexical_binding) - : calln (Vinternal__get_default_lexical_binding_function, from))); + return ((lexc == Cookie_Lex + ? Qt + : (lexc == Cookie_Dyn + ? Qnil + : ((NILP (from) /* Loading a byte-compiled file. */ + || NILP (Vinternal__get_default_lexical_binding_function)) + ? Fdefault_toplevel_value (Qlexical_binding) + : calln (Vinternal__get_default_lexical_binding_function, + from))))); } DEFUN ("load", Fload, Sload, 1, 5, 0,