File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/python3
2
2
3
- ## Copyright 2018-2022 John Donoghue
3
+ ## Copyright 2018-2023 John Donoghue
4
4
##
5
5
## This program is free software: you can redistribute it and/or modify it
6
6
## under the terms of the GNU General Public License as published by
16
16
## along with this program. If not, see
17
17
## <https://www.gnu.org/licenses/>.
18
18
19
- ## mkfuncdocs v1.0.5
19
+ ## mkfuncdocs v1.0.6
20
20
## mkfuncdocs.py will attempt to extract the help texts from functions in src
21
21
## dirs, extracting only those that are in the specifed INDEX file and output them
22
22
## to stdout in texi format
@@ -139,7 +139,8 @@ def read_cc_file(filename, skip=0):
139
139
140
140
if len (line ) > 0 and line [- 1 ] == '\n ' :
141
141
line = line [:- 1 ]
142
- if line .endswith ('")' ):
142
+ # endif a texinfo line
143
+ elif line .endswith ('")' ):
143
144
line = line [:- 2 ]
144
145
145
146
if line .startswith ('{' ):
You can’t perform that action at this time.
0 commit comments