aboutsummaryrefslogtreecommitdiffstats
path: root/src/lread.c
diff options
context:
space:
mode:
authorDan Nicolaescu2009-11-11 06:10:42 +0000
committerDan Nicolaescu2009-11-11 06:10:42 +0000
commita4ada374d6f96b5a7b9fe8df57307fae3fcd3351 (patch)
treea574ca978f9298d0866d1181223566fc932a52a6 /src/lread.c
parent04991a1c0d1e23391f5d88d3e5007e352c1ab3cb (diff)
downloademacs-a4ada374d6f96b5a7b9fe8df57307fae3fcd3351.tar.gz
emacs-a4ada374d6f96b5a7b9fe8df57307fae3fcd3351.zip
* xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
* xterm.c (syms_of_xterm): * xfaces.c (syms_of_xfaces): * xdisp.c (syms_of_xdisp): * lread.c (syms_of_lread): * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of build_string. * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
Diffstat (limited to 'src/lread.c')
-rw-r--r--src/lread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c
index a75836f0462..a3cb505f723 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -4330,8 +4330,8 @@ otherwise to default specified by file `epaths.h' when Emacs was built. */);
4330This list should not include the empty string. 4330This list should not include the empty string.
4331`load' and related functions try to append these suffixes, in order, 4331`load' and related functions try to append these suffixes, in order,
4332to the specified file name if a Lisp suffix is allowed or required. */); 4332to the specified file name if a Lisp suffix is allowed or required. */);
4333 Vload_suffixes = Fcons (build_string (".elc"), 4333 Vload_suffixes = Fcons (make_pure_c_string (".elc"),
4334 Fcons (build_string (".el"), Qnil)); 4334 Fcons (make_pure_c_string (".el"), Qnil));
4335 DEFVAR_LISP ("load-file-rep-suffixes", &Vload_file_rep_suffixes, 4335 DEFVAR_LISP ("load-file-rep-suffixes", &Vload_file_rep_suffixes,
4336 doc: /* List of suffixes that indicate representations of \ 4336 doc: /* List of suffixes that indicate representations of \
4337the same file. 4337the same file.