]> git.eshelyaron.com Git - emacs.git/commit
Fix misuses of NULL when talking about the NUL character
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 22 Mar 2019 03:55:28 +0000 (23:55 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 22 Mar 2019 03:55:28 +0000 (23:55 -0400)
commit76fea1eba1332440eab2e3daecce053daccd3782
tree944ea8279b8a52cb715fe3493d909bc581776430
parent57a60db2b88dfa5dea41a3a05b736cd7cd17a953
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.
43 files changed:
doc/lispref/files.texi
doc/lispref/nonascii.texi
doc/lispref/processes.texi
etc/NEWS
lisp/info.el
lisp/international/mule.el
lisp/subr.el
lisp/vc/vc-git.el
src/alloc.c
src/bidi.c
src/bignum.c
src/callint.c
src/coding.c
src/coding.h
src/dired.c
src/dispextern.h
src/doc.c
src/doprnt.c
src/editfns.c
src/emacs-module.c
src/emacs.c
src/fileio.c
src/filelock.c
src/fns.c
src/font.c
src/insdel.c
src/json.c
src/keyboard.c
src/lisp.h
src/lread.c
src/module-env-25.h
src/syntax.c
src/sysdep.c
src/termcap.c
src/timefns.c
src/unexmacosx.c
src/w16select.c
src/w32.c
src/w32fns.c
src/w32proc.c
src/w32select.c
src/xdisp.c
src/xfont.c