]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/international/mule.el (define-coding-system): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Fri, 6 Nov 2020 20:13:50 +0000 (22:13 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 6 Nov 2020 20:13:50 +0000 (22:13 +0200)
lisp/international/mule.el

index 86f3d2a34bf0c2676a5a0807713f8f89c6c99000..c47f0722544dc855d1b71c5cadba4b6a0cd91b71 100644 (file)
@@ -876,16 +876,23 @@ as an encoding result.
 
 `:inhibit-nul-byte-detection'
 
-VALUE non-nil means Emacs ignore null bytes on code detection.
+VALUE non-nil means Emacs should ignore null bytes on code detection.
 See the variable `inhibit-nul-byte-detection'.  This attribute
 is meaningful only when `:coding-type' is `undecided'.
+If VALUE is t, Emacs will ignore null bytes unconditionally while
+detecting encoding.  If VALUE is non-nil and not t, Emacs will
+ignore null bytes if `inhibit-null-byte-detection' is non-nil.
 
 `:inhibit-iso-escape-detection'
 
-VALUE non-nil means Emacs ignores ISO-2022 escape sequences on
+VALUE non-nil means Emacs should ignore ISO-2022 escape sequences on
 code detection.  See the variable `inhibit-iso-escape-detection'.
 This attribute is meaningful only when `:coding-type' is
 `undecided'.
+If VALUE is t, Emacs will ignore escape sequences unconditionally
+while detecting encoding.  If VALUE is non-nil and not t, Emacs
+will ignore escape sequences if `inhibit-iso-escape-detection' is
+non-nil.
 
 `:prefer-utf-8'