comparison src/lread.c @ 39816:2a3f4d2a5ccc

(syms_of_lread) <load-suffixes>: Fix last change: multi-line strings without a trailing "\n\".
author Eli Zaretskii <eliz@gnu.org>
date Fri, 12 Oct 2001 08:28:32 +0000
parents 57070445ceac
children 6235c0f8e52c
comparison
equal deleted inserted replaced
39815:84c09f9334e7 39816:2a3f4d2a5ccc
3542 Each element is a string (directory name) or nil (try default directory).\n\ 3542 Each element is a string (directory name) or nil (try default directory).\n\
3543 Initialized based on EMACSLOADPATH environment variable, if any,\n\ 3543 Initialized based on EMACSLOADPATH environment variable, if any,\n\
3544 otherwise to default specified by file `epaths.h' when Emacs was built."); 3544 otherwise to default specified by file `epaths.h' when Emacs was built.");
3545 3545
3546 DEFVAR_LISP ("load-suffixes", &Vload_suffixes, 3546 DEFVAR_LISP ("load-suffixes", &Vload_suffixes,
3547 "*List of suffixes to try for files to load. 3547 "*List of suffixes to try for files to load.\n\
3548 This list should not include the empty string."); 3548 This list should not include the empty string.");
3549 Vload_suffixes = Fcons (build_string (".elc"), 3549 Vload_suffixes = Fcons (build_string (".elc"),
3550 Fcons (build_string (".el"), Qnil)); 3550 Fcons (build_string (".el"), Qnil));
3551 /* We don't use empty_string because it's not initialized yet. */ 3551 /* We don't use empty_string because it's not initialized yet. */
3552 default_suffixes = Fcons (build_string (""), Qnil); 3552 default_suffixes = Fcons (build_string (""), Qnil);