From: Eli Zaretskii Date: Fri, 12 Oct 2001 08:29:44 +0000 (+0000) Subject: (syms_of_lread) : Fix last change: X-Git-Tag: ttn-vms-21-2-B4~19539 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2ab7765c6219044788868e0891dc6067a08d4ee9;p=emacs.git (syms_of_lread) : Fix last change: multi-line strings without a trailing "\n\". --- diff --git a/src/ChangeLog b/src/ChangeLog index 56b2587172c..c030c436223 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-10-12 Eli Zaretskii + + * lread.c (syms_of_lread) : Fix last change: + multi-line strings without a trailing "\n\". + 2001-10-12 Pavel Jan,Bm(Bk * floatfns.c: float_error() is defined iff FLOAT_CATCH_SIGILL is diff --git a/src/lread.c b/src/lread.c index ac4e5bb333e..f5cff736c2b 100644 --- a/src/lread.c +++ b/src/lread.c @@ -3544,7 +3544,7 @@ Initialized based on EMACSLOADPATH environment variable, if any,\n\ otherwise to default specified by file `epaths.h' when Emacs was built."); DEFVAR_LISP ("load-suffixes", &Vload_suffixes, - "*List of suffixes to try for files to load. + "*List of suffixes to try for files to load.\n\ This list should not include the empty string."); Vload_suffixes = Fcons (build_string (".elc"), Fcons (build_string (".el"), Qnil));