Function: texinfo-texindex

texinfo-texindex is an interactive and byte-compiled function defined in texinfo.el.gz.

Signature

(texinfo-texindex)

Documentation

Run texindex on unsorted index files.

The index files are made by M-x texinfo-tex-region (texinfo-tex-region) or M-x texinfo-tex-buffer (texinfo-tex-buffer). This runs the shell command defined by texinfo-texindex-command.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo-texindex ()
  "Run `texindex' on unsorted index files.
The index files are made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
This runs the shell command defined by `texinfo-texindex-command'."
  (interactive)
  (require 'tex-mode)
  (tex-send-command texinfo-texindex-command (concat tex-zap-file ".??"))
  ;; alternatively
  ;; (send-string "tex-shell"
  ;;              (concat texinfo-texindex-command
  ;;                      " " tex-zap-file ".??" "\n"))
  (tex-recenter-output-buffer nil))