Function: Info-cease-edit

Info-cease-edit is an interactive and byte-compiled function defined in info-edit.el.gz.

Signature

(Info-cease-edit)

Documentation

Finish editing Info node; switch back to Info proper.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/info-edit.el.gz
(defun Info-cease-edit ()
  "Finish editing Info node; switch back to Info proper."
  (interactive)
  ;; Do this first, so nothing has changed if user C-g's at query.
  (and (buffer-modified-p)
       (y-or-n-p "Save the file? ")
       (save-buffer))
  (Info-mode)
  (force-mode-line-update)
  (and (marker-position Info-tag-table-marker)
       (buffer-modified-p)
       (message "Tags may have changed.  Use Info-tagify if necessary")))