(interactive "P")
(if (not region-p)
- (let ((auto-fill-function nil)) ; update a single node
+ ;; update a single node
+ (let ((auto-fill-function nil) (auto-fill-hook nil))
(if (not (re-search-backward "^@node" (point-min) t))
(error "Node line not found before this position."))
(texinfo-update-the-node)
(message "Done...updated the node. You may save the buffer."))
;; else
(let ((auto-fill-function nil)
+ (auto-fill-hook nil)
(beginning (region-beginning))
(end (region-end)))
(if (= end beginning)
(interactive "P")
(if (not region-p)
- (let ((auto-fill-function nil)) ; update a single node
+ ;; update a single node
+ (let ((auto-fill-function nil) (auto-fill-hook nil))
(if (not (re-search-backward "^@node" (point-min) t))
(error "Node line not found before this position."))
(texinfo-sequentially-update-the-node)
"Done...sequentially updated the node . You may save the buffer."))
;; else
(let ((auto-fill-function nil)
+ (auto-fill-hook nil)
(beginning (region-beginning))
(end (region-end)))
(if (= end beginning)