Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 3b9c0f4aca53c751816b4170adbeae0906641b33 authored by Martin v. Löwis on 13 December 2008, 13:37:04 UTC
Add 2.4.6 uuids.
Tip revision: 3b9c0f4
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