Please use --enable-check-lisp-object-type.
+2013-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * lread.c (init_lread): Fix int/Lisp_Object mixup.
+ Please use --enable-check-lisp-object-type.
+
2013-11-23 Glenn Morris <rgm@gnu.org>
* process.c (get_process): Explicit error for dead buffers.
load_path_check (Vload_path);
/* Replace any nil elements from the environment with the default. */
- if (Fmemq (Qnil, Vload_path))
+ if (!NILP (Fmemq (Qnil, Vload_path)))
{
Lisp_Object lpath = Vload_path;
Lisp_Object elem, default_lpath = load_path_default (1);