X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/cb1caeaf2ba26df05e8f9bcd4aa63203cef781fb..2a0213a6d0a9e36a388994445837e051d0bbe5f9:/src/data.c diff --git a/src/data.c b/src/data.c index faa87d0013..4b342c0f52 100644 --- a/src/data.c +++ b/src/data.c @@ -3011,11 +3011,11 @@ syms_of_data (void) Fput (Qerror, Qerror_conditions, error_tail); Fput (Qerror, Qerror_message, - make_pure_c_string ("error")); + build_pure_c_string ("error")); #define PUT_ERROR(sym, tail, msg) \ Fput (sym, Qerror_conditions, pure_cons (sym, tail)); \ - Fput (sym, Qerror_message, make_pure_c_string (msg)) + Fput (sym, Qerror_message, build_pure_c_string (msg)) PUT_ERROR (Qquit, Qnil, "Quit"); @@ -3042,7 +3042,7 @@ syms_of_data (void) arith_tail = pure_cons (Qarith_error, error_tail); Fput (Qarith_error, Qerror_conditions, arith_tail); - Fput (Qarith_error, Qerror_message, make_pure_c_string ("Arithmetic error")); + Fput (Qarith_error, Qerror_message, build_pure_c_string ("Arithmetic error")); PUT_ERROR (Qbeginning_of_buffer, error_tail, "Beginning of buffer"); PUT_ERROR (Qend_of_buffer, error_tail, "End of buffer");