diff options
| author | Stefan Monnier | 2019-03-21 23:55:28 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2019-03-21 23:55:28 -0400 |
| commit | 76fea1eba1332440eab2e3daecce053daccd3782 (patch) | |
| tree | 944ea8279b8a52cb715fe3493d909bc581776430 /src/lread.c | |
| parent | 57a60db2b88dfa5dea41a3a05b736cd7cd17a953 (diff) | |
| download | emacs-76fea1eba1332440eab2e3daecce053daccd3782.tar.gz emacs-76fea1eba1332440eab2e3daecce053daccd3782.zip | |
Fix misuses of NULL when talking about the NUL character
* lisp/subr.el (inhibit-null-byte-detection): Make it an obsolete alias.
* src/coding.c (setup_coding_system): Use new name.
(detect_coding): Rename null_byte_found => nul_byte_found.
(detect_coding_system): Use new name.
Rename null_byte_found => nul_byte_found.
(Fdefine_coding_system_internal): Use new name.
(syms_of_coding): Rename inhibit-null-byte-detection to
inhibit-nul-byte-detection.
* src/w16select.c (get_clipboard_data): null_char => nul_char.
* src/json.c (check_string_without_embedded_nuls): Rename from
check_string_without_embedded_nulls.
(Fjson_parse_string): Adjust accordingly.
* src/coding.h (enum define_coding_undecided_arg_index)
(enum coding_attr_index): ...null_byte... => ...nul_byte....
* lisp/info.el (info-insert-file-contents, Info-insert-dir):
* lisp/international/mule.el (define-coding-system):
* lisp/vc/vc-git.el (vc-git--call):
* doc/lispref/nonascii.texi (Lisp and Coding Systems): Use the new name.
Diffstat (limited to 'src/lread.c')
| -rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 8b0d693daf2..2d64b638ff5 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -2659,7 +2659,7 @@ free_contents (void *p) | |||
| 2659 | static Lisp_Object | 2659 | static Lisp_Object |
| 2660 | read_integer (Lisp_Object readcharfun, EMACS_INT radix) | 2660 | read_integer (Lisp_Object readcharfun, EMACS_INT radix) |
| 2661 | { | 2661 | { |
| 2662 | /* Room for sign, leading 0, other digits, trailing null byte. | 2662 | /* Room for sign, leading 0, other digits, trailing NUL byte. |
| 2663 | Also, room for invalid syntax diagnostic. */ | 2663 | Also, room for invalid syntax diagnostic. */ |
| 2664 | size_t len = max (1 + 1 + UINTMAX_WIDTH + 1, | 2664 | size_t len = max (1 + 1 + UINTMAX_WIDTH + 1, |
| 2665 | sizeof "integer, radix " + INT_STRLEN_BOUND (EMACS_INT)); | 2665 | sizeof "integer, radix " + INT_STRLEN_BOUND (EMACS_INT)); |