mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-05 17:09:56 +00:00
lib/configure.py: display latex package checking results faster
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@14548 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
293c9812db
commit
c012fabf39
@ -1,3 +1,6 @@
|
|||||||
|
2006-08-06 Bo Peng <ben.bob@gmail.com>
|
||||||
|
* lib/configure.py: display latex package checking result faster.
|
||||||
|
|
||||||
2006-07-17 Bo Peng <ben.bob@gmail.com>
|
2006-07-17 Bo Peng <ben.bob@gmail.com>
|
||||||
* Change the encoding of some python scripts from iso-8859-15
|
* Change the encoding of some python scripts from iso-8859-15
|
||||||
to iso-8859-1.
|
to iso-8859-1.
|
||||||
|
@ -549,9 +549,14 @@ def checkLatexConfig(check_config, bool_docbook, bool_linuxdoc):
|
|||||||
cl.close()
|
cl.close()
|
||||||
#
|
#
|
||||||
# we have chklayouts.tex, then process it
|
# we have chklayouts.tex, then process it
|
||||||
for line in cmdOutput(LATEX + ' wrap_chkconfig.ltx').splitlines():
|
fout = os.popen(LATEX + ' wrap_chkconfig.ltx')
|
||||||
|
while True:
|
||||||
|
line = fout.readline()
|
||||||
|
if not line:
|
||||||
|
break;
|
||||||
if re.match('^\+', line):
|
if re.match('^\+', line):
|
||||||
print line
|
print line,
|
||||||
|
fout.close()
|
||||||
#
|
#
|
||||||
# currently, values in chhkconfig are only used to set
|
# currently, values in chhkconfig are only used to set
|
||||||
# \font_encoding
|
# \font_encoding
|
||||||
|
@ -30,3 +30,5 @@ What's new
|
|||||||
* Miscellaneous
|
* Miscellaneous
|
||||||
|
|
||||||
- Handle the Meta keyboard modifier as Alt (Qt only).
|
- Handle the Meta keyboard modifier as Alt (Qt only).
|
||||||
|
|
||||||
|
- Display latex package checking results faster during configuration.
|
||||||
|
Loading…
Reference in New Issue
Block a user