1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-29 19:48:19 +00:00
(info-insert-file-contents, Info-insert-dir): Bind inhibit-null-byte-detection
to non-nil.
This commit is contained in:
Eli Zaretskii 2009-01-10 10:43:11 +00:00
parent 97b1b294af
commit 8b5e8b42f7
2 changed files with 14 additions and 2 deletions

View File

@ -1,3 +1,10 @@
2009-01-10 Eli Zaretskii <eliz@gnu.org>
Fix Bug #876:
* info.el (info-insert-file-contents, Info-insert-dir): Bind
inhibit-null-byte-detection to non-nil.
2009-01-10 Martin Rudalics <rudalics@gmx.at>
* tool-bar.el (tool-bar-mode): Modify all frame parameters when

View File

@ -461,13 +461,15 @@ Do the right thing if the file has been compressed or zipped."
(insert-file-contents-literally fullname visit)
(let ((inhibit-read-only t)
(coding-system-for-write 'no-conversion)
(inhibit-null-byte-detection t) ; Index nodes include null bytes
(default-directory (or (file-name-directory fullname)
default-directory)))
(or (consp decoder)
(setq decoder (list decoder)))
(apply 'call-process-region (point-min) (point-max)
(car decoder) t t nil (cdr decoder))))
(insert-file-contents fullname visit))))
(let ((inhibit-null-byte-detection t)) ; Index nodes include null bytes
(insert-file-contents fullname visit)))))
(defun Info-file-supports-index-cookies (&optional file)
"Return non-nil value if FILE supports Info index cookies.
@ -1094,7 +1096,10 @@ a case-insensitive match is tried."
(or buffers
(message "Composing main Info directory..."))
(condition-case nil
(progn
;; Index nodes include null bytes. DIR
;; files should not have indices, but who
;; knows...
(let ((inhibit-null-byte-detection t))
(insert-file-contents file)
(set (make-local-variable 'Info-dir-file-name)
file)