+2013-11-25 Glenn Morris <rgm@gnu.org>
+
+ * lread.c (init_lread): Fix 2013-11-23 goof that was checking
+ uninstalled dump_path against installed Vload_path. (Bug#15964)
+
2013-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
Export get_pos_property to Elisp.
}
else /* Vpurify_flag || !EMACSLOADPATH */
{
+ Lisp_Object lpath = Vload_path;
Vload_path = load_path_default (0);
/* Check before adding site-lisp directories.
load-path has somehow already been changed (this can only be
from a site-load file during dumping?) from the dumped value.
FIXME? Should we ignore any dump_path changes? */
- if (initialized && !no_site_lisp &&
- ! NILP (Fequal (dump_path, Vload_path)))
+ if (initialized && !no_site_lisp && !NILP (Fequal (dump_path, lpath)))
{
Lisp_Object sitelisp;
sitelisp = decode_env_path (0, PATH_SITELOADSEARCH, 0);