diff options
| author | Dave Love | 2003-06-02 18:49:29 +0000 |
|---|---|---|
| committer | Dave Love | 2003-06-02 18:49:29 +0000 |
| commit | ecf488bc2597fb2c269d3d8481ed65e4c0b55b10 (patch) | |
| tree | de48185d3d94be4af97301ab795d15f0825738e8 /src/coding.c | |
| parent | 3db9e31e5e0a140a67f5b8c6bc31205684c6d77d (diff) | |
| download | emacs-ecf488bc2597fb2c269d3d8481ed65e4c0b55b10.tar.gz emacs-ecf488bc2597fb2c269d3d8481ed65e4c0b55b10.zip | |
(Qutf_8): New.
(syms_of_coding): Intern it.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c index 2982dd3c86f..a7484b42711 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -399,6 +399,8 @@ Lisp_Object Qcoding_system_p, Qcoding_system_error; | |||
| 399 | end-of-line format. */ | 399 | end-of-line format. */ |
| 400 | Lisp_Object Qemacs_mule, Qraw_text; | 400 | Lisp_Object Qemacs_mule, Qraw_text; |
| 401 | 401 | ||
| 402 | Lisp_Object Qutf_8; | ||
| 403 | |||
| 402 | /* Coding-systems are handed between Emacs Lisp programs and C internal | 404 | /* Coding-systems are handed between Emacs Lisp programs and C internal |
| 403 | routines by the following three variables. */ | 405 | routines by the following three variables. */ |
| 404 | /* Coding-system for reading files and receiving data from process. */ | 406 | /* Coding-system for reading files and receiving data from process. */ |
| @@ -7584,6 +7586,9 @@ syms_of_coding () | |||
| 7584 | Qraw_text = intern ("raw-text"); | 7586 | Qraw_text = intern ("raw-text"); |
| 7585 | staticpro (&Qraw_text); | 7587 | staticpro (&Qraw_text); |
| 7586 | 7588 | ||
| 7589 | Qutf_8 = intern ("utf-8"); | ||
| 7590 | staticpro (&Qutf_8); | ||
| 7591 | |||
| 7587 | defsubr (&Scoding_system_p); | 7592 | defsubr (&Scoding_system_p); |
| 7588 | defsubr (&Sread_coding_system); | 7593 | defsubr (&Sread_coding_system); |
| 7589 | defsubr (&Sread_non_nil_coding_system); | 7594 | defsubr (&Sread_non_nil_coding_system); |