Add some comments

Modified Files:
	info.txt lyxcodelinewrapper.pl
This commit is contained in:
pbldp 2002-01-19 14:08:47 +00:00
parent a57c49af1a
commit c084a7df6c
2 changed files with 8 additions and 2 deletions

View File

@ -7,3 +7,6 @@ This is the working directory of
Content:
Linux+IPv6-HOWTO.lyx (online next)
LyX file of the Linux+IPv6-HOWTO
lyxcodelinewrapper.pl
Perl program which wraps too long "code" lines in a LyX file

View File

@ -1,6 +1,6 @@
#!/usr/bin/perl
#
# lyxcodelinewrapper.pl
# $Id$
#
# LyX codeline wrapper tool
#
@ -12,7 +12,8 @@
# Wraps length of code lines to a given limit.
# Marks second and next lines with a given character.
#
# $Id$
# Attention: no warranty that the new LyX code is very well!
# Use diff to check proper work
#
# Changes:
# 20020118: Initial try
@ -154,3 +155,5 @@ sub print_long_line ($){
$l = $l + $t;
};
};
print STDERR "WARNING: check code using utility 'diff' for proper LyX output!"