Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 648aa1db46291bd40c37c08329c18676031f301a authored by cvs2svn on 08 February 2005, 13:27:52 UTC
This commit was manufactured by cvs2svn to create tag 'r235'.
Tip revision: 648aa1d
fixinfo.el
(defun fix-python-texinfo ()
  (goto-char (point-min))
  (replace-regexp "\\(@setfilename \\)\\([-a-z]*\\)$"
		  "\\1python-\\2.info")
  (replace-string "@node Front Matter\n@chapter Abstract\n"
		  "@node Abstract\n@section Abstract\n")
  (mark-whole-buffer)
  (texinfo-master-menu 'update-all-nodes)
  (save-buffer)
  )	;; fix-python-texinfo

;; now really do it:
(find-file (car command-line-args-left))
(fix-python-texinfo)
(kill-emacs)
back to top