mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-22 07:42:02 +00:00
Just a comment.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25053 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3d4f1ca1bc
commit
9ae7fa2f36
@ -1540,6 +1540,8 @@ def revert_btprintall(document):
|
||||
#this should not happen
|
||||
document.warning("End of CommandInset bibtex not found in revert_btprintall!")
|
||||
j = len(document.body)
|
||||
# this range isn't really right, but it should be OK, since we shouldn't
|
||||
# see more than one matching line in each inset
|
||||
for k in range(i, j):
|
||||
if (document.body[k] == 'btprint "btPrintAll"'):
|
||||
del document.body[k]
|
||||
@ -1551,7 +1553,7 @@ def revert_btprintall(document):
|
||||
"\\end_layout",
|
||||
"\\end_inset"]
|
||||
document.body[i:i] = subst
|
||||
i = j
|
||||
i = j + len(subst) - 1
|
||||
|
||||
|
||||
def revert_bahasam(document):
|
||||
|
Loading…
x
Reference in New Issue
Block a user