diff options
| author | Pip Cet | 2021-05-16 15:44:26 +0200 |
|---|---|---|
| committer | Stefan Monnier | 2022-07-01 09:42:00 -0400 |
| commit | 094fd7ded365434b08f5d7c8ff499d17d566d54b (patch) | |
| tree | 40366419e9d899e48c26439f428fee7b741d307c /src/coding.c | |
| parent | 3a4c408a7b6f3df5ca0eb4a406efbdb4899e9742 (diff) | |
| download | emacs-scratch/no-purespace-2.tar.gz emacs-scratch/no-purespace-2.zip | |
Remove purespace from Emacsscratch/no-purespace-2
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/coding.c b/src/coding.c index 3fb4f148b1c..a4087b68343 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -11682,7 +11682,7 @@ syms_of_coding (void) | |||
| 11682 | Vcode_conversion_reused_workbuf = Qnil; | 11682 | Vcode_conversion_reused_workbuf = Qnil; |
| 11683 | 11683 | ||
| 11684 | staticpro (&Vcode_conversion_workbuf_name); | 11684 | staticpro (&Vcode_conversion_workbuf_name); |
| 11685 | Vcode_conversion_workbuf_name = build_pure_c_string (" *code-conversion-work*"); | 11685 | Vcode_conversion_workbuf_name = build_string (" *code-conversion-work*"); |
| 11686 | 11686 | ||
| 11687 | reused_workbuf_in_use = false; | 11687 | reused_workbuf_in_use = false; |
| 11688 | PDUMPER_REMEMBER_SCALAR (reused_workbuf_in_use); | 11688 | PDUMPER_REMEMBER_SCALAR (reused_workbuf_in_use); |
| @@ -11746,9 +11746,9 @@ syms_of_coding (void) | |||
| 11746 | /* Error signaled when there's a problem with detecting a coding system. */ | 11746 | /* Error signaled when there's a problem with detecting a coding system. */ |
| 11747 | DEFSYM (Qcoding_system_error, "coding-system-error"); | 11747 | DEFSYM (Qcoding_system_error, "coding-system-error"); |
| 11748 | Fput (Qcoding_system_error, Qerror_conditions, | 11748 | Fput (Qcoding_system_error, Qerror_conditions, |
| 11749 | pure_list (Qcoding_system_error, Qerror)); | 11749 | list (Qcoding_system_error, Qerror)); |
| 11750 | Fput (Qcoding_system_error, Qerror_message, | 11750 | Fput (Qcoding_system_error, Qerror_message, |
| 11751 | build_pure_c_string ("Invalid coding system")); | 11751 | build_string ("Invalid coding system")); |
| 11752 | 11752 | ||
| 11753 | DEFSYM (Qtranslation_table, "translation-table"); | 11753 | DEFSYM (Qtranslation_table, "translation-table"); |
| 11754 | Fput (Qtranslation_table, Qchar_table_extra_slots, make_fixnum (2)); | 11754 | Fput (Qtranslation_table, Qchar_table_extra_slots, make_fixnum (2)); |
| @@ -12023,22 +12023,22 @@ encoding standard output and error streams. */); | |||
| 12023 | DEFVAR_LISP ("eol-mnemonic-unix", eol_mnemonic_unix, | 12023 | DEFVAR_LISP ("eol-mnemonic-unix", eol_mnemonic_unix, |
| 12024 | doc: /* | 12024 | doc: /* |
| 12025 | String displayed in mode line for UNIX-like (LF) end-of-line format. */); | 12025 | String displayed in mode line for UNIX-like (LF) end-of-line format. */); |
| 12026 | eol_mnemonic_unix = build_pure_c_string (":"); | 12026 | eol_mnemonic_unix = build_string (":"); |
| 12027 | 12027 | ||
| 12028 | DEFVAR_LISP ("eol-mnemonic-dos", eol_mnemonic_dos, | 12028 | DEFVAR_LISP ("eol-mnemonic-dos", eol_mnemonic_dos, |
| 12029 | doc: /* | 12029 | doc: /* |
| 12030 | String displayed in mode line for DOS-like (CRLF) end-of-line format. */); | 12030 | String displayed in mode line for DOS-like (CRLF) end-of-line format. */); |
| 12031 | eol_mnemonic_dos = build_pure_c_string ("\\"); | 12031 | eol_mnemonic_dos = build_string ("\\"); |
| 12032 | 12032 | ||
| 12033 | DEFVAR_LISP ("eol-mnemonic-mac", eol_mnemonic_mac, | 12033 | DEFVAR_LISP ("eol-mnemonic-mac", eol_mnemonic_mac, |
| 12034 | doc: /* | 12034 | doc: /* |
| 12035 | String displayed in mode line for MAC-like (CR) end-of-line format. */); | 12035 | String displayed in mode line for MAC-like (CR) end-of-line format. */); |
| 12036 | eol_mnemonic_mac = build_pure_c_string ("/"); | 12036 | eol_mnemonic_mac = build_string ("/"); |
| 12037 | 12037 | ||
| 12038 | DEFVAR_LISP ("eol-mnemonic-undecided", eol_mnemonic_undecided, | 12038 | DEFVAR_LISP ("eol-mnemonic-undecided", eol_mnemonic_undecided, |
| 12039 | doc: /* | 12039 | doc: /* |
| 12040 | String displayed in mode line when end-of-line format is not yet determined. */); | 12040 | String displayed in mode line when end-of-line format is not yet determined. */); |
| 12041 | eol_mnemonic_undecided = build_pure_c_string (":"); | 12041 | eol_mnemonic_undecided = build_string (":"); |
| 12042 | 12042 | ||
| 12043 | DEFVAR_LISP ("enable-character-translation", Venable_character_translation, | 12043 | DEFVAR_LISP ("enable-character-translation", Venable_character_translation, |
| 12044 | doc: /* | 12044 | doc: /* |
| @@ -12178,7 +12178,7 @@ internal character representation. */); | |||
| 12178 | intern_c_string (":for-unibyte"), | 12178 | intern_c_string (":for-unibyte"), |
| 12179 | args[coding_arg_for_unibyte] = Qt, | 12179 | args[coding_arg_for_unibyte] = Qt, |
| 12180 | intern_c_string (":docstring"), | 12180 | intern_c_string (":docstring"), |
| 12181 | (build_pure_c_string | 12181 | (build_string |
| 12182 | ("Do no conversion.\n" | 12182 | ("Do no conversion.\n" |
| 12183 | "\n" | 12183 | "\n" |
| 12184 | "When you visit a file with this coding, the file is read into a\n" | 12184 | "When you visit a file with this coding, the file is read into a\n" |
| @@ -12198,7 +12198,7 @@ internal character representation. */); | |||
| 12198 | plist[8] = intern_c_string (":charset-list"); | 12198 | plist[8] = intern_c_string (":charset-list"); |
| 12199 | plist[9] = args[coding_arg_charset_list] = list1 (Qascii); | 12199 | plist[9] = args[coding_arg_charset_list] = list1 (Qascii); |
| 12200 | plist[11] = args[coding_arg_for_unibyte] = Qnil; | 12200 | plist[11] = args[coding_arg_for_unibyte] = Qnil; |
| 12201 | plist[13] = build_pure_c_string ("No conversion on encoding, " | 12201 | plist[13] = build_string ("No conversion on encoding, " |
| 12202 | "automatic conversion on decoding."); | 12202 | "automatic conversion on decoding."); |
| 12203 | plist[15] = args[coding_arg_eol_type] = Qnil; | 12203 | plist[15] = args[coding_arg_eol_type] = Qnil; |
| 12204 | args[coding_arg_plist] = CALLMANY (Flist, plist); | 12204 | args[coding_arg_plist] = CALLMANY (Flist, plist); |