Function: hywiki-cache-edit
hywiki-cache-edit is a byte-compiled function defined in hywiki.el.
Signature
(hywiki-cache-edit CACHE-FILE)
Documentation
Read in CACHE-FILE for editing and disable undo and backups within it.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-cache-edit (cache-file)
"Read in CACHE-FILE for editing and disable undo and backups within it."
(prog1 (set-buffer (find-file-noselect cache-file))
(buffer-disable-undo (current-buffer))
(make-local-variable 'make-backup-files)
(make-local-variable 'backup-inhibited)
(setq make-backup-files nil
backup-inhibited t
buffer-read-only nil)))