diff options
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/print.c b/src/print.c index f90ec27a0a4..14fed114325 100644 --- a/src/print.c +++ b/src/print.c @@ -2386,7 +2386,7 @@ print_interval (interval, printcharfun) void syms_of_print () { - Qtemp_buffer_setup_hook = intern ("temp-buffer-setup-hook"); + Qtemp_buffer_setup_hook = intern_c_string ("temp-buffer-setup-hook"); staticpro (&Qtemp_buffer_setup_hook); DEFVAR_LISP ("standard-output", &Vstandard_output, @@ -2396,7 +2396,7 @@ It may also be a buffer (output is inserted before point) or a marker (output is inserted and the marker is advanced) or the symbol t (output appears in the echo area). */); Vstandard_output = Qt; - Qstandard_output = intern ("standard-output"); + Qstandard_output = intern_c_string ("standard-output"); staticpro (&Qstandard_output); DEFVAR_LISP ("float-output-format", &Vfloat_output_format, @@ -2416,7 +2416,7 @@ decimal point. 0 is not allowed with `e' or `g'. A value of nil means to use the shortest notation that represents the number without losing information. */); Vfloat_output_format = Qnil; - Qfloat_output_format = intern ("float-output-format"); + Qfloat_output_format = intern_c_string ("float-output-format"); staticpro (&Qfloat_output_format); DEFVAR_LISP ("print-length", &Vprint_length, @@ -2522,16 +2522,16 @@ priorities. */); defsubr (&Sredirect_debugging_output); #endif - Qexternal_debugging_output = intern ("external-debugging-output"); + Qexternal_debugging_output = intern_c_string ("external-debugging-output"); staticpro (&Qexternal_debugging_output); - Qprint_escape_newlines = intern ("print-escape-newlines"); + Qprint_escape_newlines = intern_c_string ("print-escape-newlines"); staticpro (&Qprint_escape_newlines); - Qprint_escape_multibyte = intern ("print-escape-multibyte"); + Qprint_escape_multibyte = intern_c_string ("print-escape-multibyte"); staticpro (&Qprint_escape_multibyte); - Qprint_escape_nonascii = intern ("print-escape-nonascii"); + Qprint_escape_nonascii = intern_c_string ("print-escape-nonascii"); staticpro (&Qprint_escape_nonascii); print_prune_charset_plist = Qnil; |
