diff options
| author | Dan Nicolaescu | 2009-11-11 06:10:42 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-11 06:10:42 +0000 |
| commit | a4ada374d6f96b5a7b9fe8df57307fae3fcd3351 (patch) | |
| tree | a574ca978f9298d0866d1181223566fc932a52a6 /src/lread.c | |
| parent | 04991a1c0d1e23391f5d88d3e5007e352c1ab3cb (diff) | |
| download | emacs-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.c | 4 |
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. */); | |||
| 4330 | This list should not include the empty string. | 4330 | This 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, |
| 4332 | to the specified file name if a Lisp suffix is allowed or required. */); | 4332 | to 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 \ |
| 4337 | the same file. | 4337 | the same file. |