From c084a7df6c3ed25c54ad3376f099497984045c0b Mon Sep 17 00:00:00 2001 From: pbldp <> Date: Sat, 19 Jan 2002 14:08:47 +0000 Subject: [PATCH] Add some comments Modified Files: info.txt lyxcodelinewrapper.pl --- LDP/users/Peter-Bieringer/info.txt | 3 +++ LDP/users/Peter-Bieringer/lyxcodelinewrapper.pl | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/LDP/users/Peter-Bieringer/info.txt b/LDP/users/Peter-Bieringer/info.txt index b40eb4c3..300827ce 100644 --- a/LDP/users/Peter-Bieringer/info.txt +++ b/LDP/users/Peter-Bieringer/info.txt @@ -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 diff --git a/LDP/users/Peter-Bieringer/lyxcodelinewrapper.pl b/LDP/users/Peter-Bieringer/lyxcodelinewrapper.pl index 96c549b3..921a7706 100755 --- a/LDP/users/Peter-Bieringer/lyxcodelinewrapper.pl +++ b/LDP/users/Peter-Bieringer/lyxcodelinewrapper.pl @@ -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!"