aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2001-10-12 08:29:44 +0000
committerEli Zaretskii2001-10-12 08:29:44 +0000
commit2ab7765c6219044788868e0891dc6067a08d4ee9 (patch)
tree84d0c48d5f8f9efb307bea279a92a42b0554f86e /src
parent311346bb318b33822a0c3db4e7509780a5ad092f (diff)
downloademacs-2ab7765c6219044788868e0891dc6067a08d4ee9.tar.gz
emacs-2ab7765c6219044788868e0891dc6067a08d4ee9.zip
(syms_of_lread) <load-suffixes>: Fix last change:
multi-line strings without a trailing "\n\".
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/lread.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 56b2587172c..c030c436223 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12001-10-12 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * lread.c (syms_of_lread) <load-suffixes>: Fix last change:
4 multi-line strings without a trailing "\n\".
5
12001-10-12 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 62001-10-12 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 7
3 * floatfns.c: float_error() is defined iff FLOAT_CATCH_SIGILL is 8 * 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\
3544otherwise to default specified by file `epaths.h' when Emacs was built."); 3544otherwise 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\
3548This list should not include the empty string."); 3548This 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));