diff options
author | Fred Drake <fdrake@acm.org> | 1999-01-27 18:40:36 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-01-27 18:40:36 (GMT) |
commit | ffc4811a401cbdbeef42f7e4c1e57519ded7a48b (patch) | |
tree | 9dc29252ab16df4d41d85d22e0e4cea7cc58b3cb /Doc | |
parent | c5efde85223f7f83aadcd64503e8317dce6f4856 (diff) | |
download | cpython-ffc4811a401cbdbeef42f7e4c1e57519ded7a48b.zip cpython-ffc4811a401cbdbeef42f7e4c1e57519ded7a48b.tar.gz cpython-ffc4811a401cbdbeef42f7e4c1e57519ded7a48b.tar.bz2 |
Simplify slightly.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tools/fixinfo.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/tools/fixinfo.el b/Doc/tools/fixinfo.el index 75baf34..267a7e3 100644 --- a/Doc/tools/fixinfo.el +++ b/Doc/tools/fixinfo.el @@ -4,10 +4,8 @@ "\\1python-\\2.info") (replace-string "@node Front Matter\n@chapter Abstract\n" "@node Abstract\n@section Abstract\n") - (progn - (mark-whole-buffer) - (texinfo-master-menu 'update-all-nodes) - ) + (mark-whole-buffer) + (texinfo-master-menu 'update-all-nodes) (save-buffer) ) ;; fix-python-texinfo |