]> git.lyx.org Git - lyx.git/blobdiff - lib/examples/Literate.lyx
Amend and extend 9f3518bc
[lyx.git] / lib / examples / Literate.lyx
index 2211f7bc5ef4c6b59b6455d7844db159ec20e0f6..599f5c9b0e38a9ff9164484fe4e29353724d4b91 100644 (file)
@@ -1,24 +1,29 @@
-#LyX 2.1 created this file. For more info see http://www.lyx.org/
-\lyxformat 442
+#LyX 2.2 created this file. For more info see http://www.lyx.org/
+\lyxformat 508
 \begin_document
 \begin_header
-\textclass literate-article
+\save_transient_properties true
+\origin /systemlyxdir/examples/
+\textclass article
 \use_default_options false
+\begin_modules
+noweb
+\end_modules
 \maintain_unincluded_children false
 \language english
 \language_package default
 \inputencoding default
 \fontencoding global
-\font_roman default
-\font_sans default
-\font_typewriter default
-\font_math auto
+\font_roman "default" "default"
+\font_sans "default" "default"
+\font_typewriter "default" "default"
+\font_math "auto" "auto"
 \font_default_family default
 \use_non_tex_fonts false
 \font_sc false
 \font_osf false
-\font_sf_scale 100
-\font_tt_scale 100
+\font_sf_scale 100 100
+\font_tt_scale 100 100
 \graphics default
 \default_output_format default
 \output_sync 0
 \use_geometry false
 \use_package amsmath 0
 \use_package amssymb 0
+\use_package cancel 0
 \use_package esint 0
 \use_package mathdots 1
 \use_package mathtools 0
 \use_package mhchem 1
+\use_package stackrel 0
+\use_package stmaryrd 0
 \use_package undertilde 0
 \cite_engine basic
-\cite_engine_type numerical
+\cite_engine_type default
 \biblio_style plain
 \use_bibtopic false
 \use_indices false
@@ -67,7 +75,8 @@
 \begin_body
 
 \begin_layout Title
-LyX and Literate Programming
+\SpecialChar LyX
+ and Literate Programming
 \begin_inset Newline newline
 \end_inset
 
@@ -84,7 +93,7 @@ edmar-w-jr@technologist.com
 status collapsed
 
 \begin_layout Plain Layout
-Modified by Bernard Michael Hurley bernardh@westherts.ac.uk ---- Don't blame
+Modified by Bernard Michael Hurley bernardh@westherts.ac.uk - Don't blame
  Edmar for any errors that have crept in!
 \end_layout
 
@@ -104,7 +113,8 @@ Note:
 \emph on
 examples/listerrors.lyx
 \emph default
- which should be installed in the LyX scripts directory.
+ which should be installed in the \SpecialChar LyX
+ scripts directory.
 \end_layout
 
 \begin_layout Date
@@ -137,15 +147,19 @@ Introduction
 \end_layout
 
 \begin_layout Standard
-After typesetting a document, LyX scans the LaTeX log file looking for errors.
+After typesetting a document, \SpecialChar LyX
+ scans the \SpecialChar LaTeX
+ log file looking for errors.
  For each error found, the line number is obtained and a error box is displayed
- in the LyX screen at that position.
+ in the \SpecialChar LyX
+ screen at that position.
 \end_layout
 
 \begin_layout Standard
 To use this feature to view compilation errors while working with literate
  documents, we need a program that filters the compilation errors and puts
- them in a format suitable for LyX reading it.
+ them in a format suitable for \SpecialChar LyX
+ reading it.
  
 \end_layout
 
@@ -158,9 +172,12 @@ In this document we present a filter that recognizes compilation error messages
 The filter is required to read from standard input, parse for error messages
  and copy the error messages to the standard output.
  During the output process, the filter must present the error messages in
- a format that LyX can interpret, currently, the LaTeX error message format.
- Of course, nothing will prevent future LyX releases from being able to
- read other formats as well (like gcc error messages for example).
+ a format that \SpecialChar LyX
+ can interpret, currently, the \SpecialChar LaTeX
+ error message format.
+ Of course, nothing will prevent future \SpecialChar LyX
+ releases from being able to read
+ other formats as well (like gcc error messages for example).
  This mechanism is necessary to fully explore the literate programming tool's
  capabilities.
 \end_layout
@@ -169,132 +186,180 @@ The filter is required to read from standard input, parse for error messages
 Algorithm
 \end_layout
 
-\begin_layout Scrap
-<<Function bodies>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Function bodies
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 int
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 main (int argc, char **argv)
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   if (argc == 2) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     switch (argv[1][0]) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     case 'n':
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       <<Scan input for noweb error messages>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       break;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     case 'x':
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       <<Scan input for xlc error messages>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       break;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     case 'a':
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       <<AIX system using both noweb and xlc>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       break;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     case 's':
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     case 'b':
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       <<Solaris and Linux systems using both noweb and gcc>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       break;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     case 'g':
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     default:
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       <<Scan input for gcc error messages>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       break;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   } else {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     <<Scan input for gcc error messages>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
-\begin_layout Scrap
-<<Function prototypes>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Function prototypes
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 int main (int argc, char **argv);
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Section
@@ -308,28 +373,38 @@ We resort to some global variables to allow access from several different
  input.
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Standard
+\begin_inset ERT
+status open
+
+\begin_layout Plain Layout
+
 <<Global variables>>=
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 char    buffer[200][200];
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
 int     last_buf_line;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
 int     last_err_line;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
+
+int     err_line;@ 
+\end_layout
 
-int     err_line;
-\begin_inset Newline newline
 \end_inset
 
-@ 
+
 \end_layout
 
 \begin_layout Section
@@ -337,7 +412,8 @@ The output format
 \end_layout
 
 \begin_layout Standard
-The output format mimics the TeX error messages format.
+The output format mimics the \SpecialChar TeX
+ error messages format.
  This function prints a number of lines residing in the global variable
  
 \family typewriter
@@ -350,9 +426,11 @@ status collapsed
 
 \begin_layout Plain Layout
 This function has been slightly changed from EW's original to make scanning
- a bit easier with LaTeX::scanLogFile().
- The test has been added because LyX can crash if empty lines are allowed
- here --- I can't figure out why! --- BMH
+ a bit easier with \SpecialChar LaTeX
+::scanLogFile().
+ The test has been added because \SpecialChar LyX
+ can crash if empty lines are allowed here
+ — I can't figure out why! — BMH
 \end_layout
 
 \end_inset
@@ -360,37 +438,53 @@ This function has been slightly changed from EW's original to make scanning
 
 \end_layout
 
-\begin_layout Scrap
-<<Function bodies>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Function bodies
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 void
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 output_error (int buf_size, int error_line, char *tool)
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   int     i;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
  
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   fprintf(stdout, "! Build Error: ==> %s ==>
 \backslash
 n", tool);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   fprintf(stdout, " ...
 \backslash
 n
@@ -400,50 +494,69 @@ nl.%d ...
 n", error_line);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
  
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   for (i=0; i<buf_size; i++)
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     if (strlen(buffer[i]) != 0)
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       fprintf(stdout, "%s", buffer[i]);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
  
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   fprintf(stdout, "
 \backslash
 n");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
-\begin_layout Scrap
-<<Function prototypes>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Function prototypes
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 void output_error (int buf_size, int error_line, char *tool);
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Section
@@ -459,40 +572,57 @@ Both noweave and notangle routines, always output one single line for each
  of the file.
 \end_layout
 
-\begin_layout Scrap
-<<Scan input for noweb error messages>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Scan input for noweb error messages
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   last_buf_line = 0;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   while (fgets(buffer[0], 200, stdin)) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     if (noweb_try(0))
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       output_error(1, err_line, "noweb");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
@@ -504,88 +634,111 @@ The examination itself is very inefficient.
  array.
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 <<Global variables>>=
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 char *noweb_msgs[] = {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "couldn't open file",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "couldn't open temporary file",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "error writing temporary file",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "ill-formed option",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "unknown option",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "Bad format sequence",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "Can't open output file",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "Can't open temporary file",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "Capacity exceeded:",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "Ignoring unknown option -",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "This can't happen:",
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   "non-numeric line number in"
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 };
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 char *noweb_msgs_mimic_gcc[] = {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   ": unescaped << in documentation chunk"
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 };
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
@@ -605,214 +758,279 @@ A noweb error message can be any string that contains a matching pair of
 > >, or any of the above strings
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Standard
+\begin_inset ERT
+status open
 
-\end_layout
+\begin_layout Plain Layout
 
-\begin_layout Scrap
 <<Function bodies>>=
-\begin_inset Newline newline
-\end_inset
+\end_layout
 
-int
-\begin_inset Newline newline
-\end_inset
+\begin_layout Plain Layout
 
-noweb_try (int buf_line)
-\begin_inset Newline newline
-\end_inset
+int noweb_try (int buf_line)
+\end_layout
+
+\begin_layout Plain Layout
 
 {
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   char    *s, *t, *b;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   int     i; 
-\begin_inset Newline newline
-\end_inset
+\end_layout
 
+\begin_layout Plain Layout
 
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   b = buffer[buf_line];
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   err_line = 0;
-\begin_inset Newline newline
-\end_inset
+\end_layout
 
+\begin_layout Plain Layout
 
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   for (i=0; i<1; i++) {
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
       s = (char *)strstr (b, noweb_msgs_mimic_gcc[i]);
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
       if (s != NULL) {
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         t = (char *)strchr(buffer[buf_line], ':');
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         err_line = atoi(t+1);
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         t = buffer[buf_line];
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         ++s;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         while (*(t++) = *(s++));
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         return 1;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
       }
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   }
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   s = (char *)strstr(b, "<<");
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   if (s != NULL) {
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
     s = (char *)strstr(s+2, ">>");
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
     if (s != NULL) {
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
       return 1;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
     }
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   } else { 
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
      for (i = 0; i < 12; ++i) {
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         s = (char *)strstr (b, noweb_msgs[i]);
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         if (s != NULL) {
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
            return 1;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
         }
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
     }
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   }
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   return 0;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
 }
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
 @
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
+
+\end_layout
+
+\begin_layout Standard
+\begin_inset ERT
+status open
+
+\begin_layout Plain Layout
+
 <<Function prototypes>>=
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 int noweb_try (int buf_line);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 @
 \end_layout
 
+\end_inset
+
+
+\end_layout
+
 \begin_layout Standard
 The xlc compiler always outputs one single line for each error found, thus
  to scan the buffer for xlc error messages it is enough to exam one input
  line at a time.
 \end_layout
 
-\begin_layout Scrap
-<<Scan input for xlc error messages>>= 
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Scan input for xlc error messages
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   last_buf_line = 0;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   while (fgets(buffer[last_buf_line], 200, stdin)) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     if (xlc_try(0))
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       output_error(1, err_line, "xlc");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
@@ -830,94 +1048,126 @@ line
  The following routine tests if a given buffer line matches this criteria:
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 <<Function bodies>>=
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 int 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 xlc_try (int buf_line)
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   char    *s, *t;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
  
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   t = buffer[buf_line];
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   s = t+1;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   while (*s != '"' && *s != ' ' && *s != '
 \backslash
 0')
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     s++;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   if (*t != '"' || *s != '"' || strncmp(s+1, ", line ", 7) != 0)
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     return 0;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   s += 8;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   err_line = atoi(s);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   return 1;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
-\begin_layout Scrap
-<<Function prototypes>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Function prototypes
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 int xlc_try (int buf_line);
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
@@ -929,7 +1179,8 @@ The gcc compiler error messages are more complicated to scan.
  line number is still the same.
  At the time they differ, all the accumulated lines, except the last one,
  will belong to one single error message, which now can be output-ed to
- LyX.
+ \SpecialChar LyX
+.
 \end_layout
 
 \begin_layout Standard
@@ -956,210 +1207,246 @@ Every gcc error message contains a string with no space followed by a
 .
 \end_layout
 
-\begin_layout Scrap
-<<Scan input for gcc error messages>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Scan input for gcc error messages
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   char    *s, *t;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
  
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   last_buf_line = 0;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   while (fgets(buffer[last_buf_line], 200, stdin)) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     /****** Skip lines until I find an error */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     s = (char *)strpbrk(buffer[last_buf_line], " :");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     if (s == NULL || *s == ' ')
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       continue; /* No gcc error found here */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     do {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       <<gcc error message criteria is to find a "...:999:" or a "...: ">>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       /****** OK It is an error message, get line number */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       err_line = atoi(s+1);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       if (last_err_line == 0 || last_err_line == err_line) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
         last_err_line = err_line;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
         continue; /* It's either a header or a continuation, don't output
  yet */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       /****** Completed the scan of one error message, output it to LyX
  */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       discharge_buffer(1);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       break;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     } while (fgets(buffer[last_buf_line], 200, stdin));
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   /****** EOF completes the scan of whatever was being scanned */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   discharge_buffer(0);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
-\begin_layout Scrap
-<<gcc error message criteria is to find a "...:999:" or a "...: ">>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+gcc error message criteria is to find a "...:999:" or a "...: "
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 /****** Search first ":" in the error number */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 s = (char *)strpbrk(buffer[last_buf_line], " :");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 last_buf_line++;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 if (s == NULL || *s == ' ') 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   <<No gcc error found here, but it might terminate the scanning of a previous
  one>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 /****** Search second ":" in the error number */
 \end_layout
 
-\begin_layout Scrap
-t = (char *)strpbrk(s+1, " :");
-\begin_inset Newline newline
-\end_inset
-
-if (t == NULL || *t == ' ')
-\begin_inset Newline newline
-\end_inset
-
-  <<No gcc error found here, but it might terminate the scanning of a previous
- one>>
-\begin_inset Newline newline
-\end_inset
-
-/****** Verify if is all digits between ":" */
-\begin_inset Newline newline
-\end_inset
-
-if (t != s+1+strspn(s+1, "0123456789")) 
-\begin_inset Newline newline
-\end_inset
-
-  <<No gcc error found here, but it might terminate the scanning of a previous
- one>>
-\begin_inset Newline newline
-\end_inset
+\begin_layout Plain Layout
 
-@
+t = (char *)strpbrk(s+1, " :");if (t == NULL || *t == ' ')  <<No gcc error
+ found here, but it might terminate the scanning of a previous one>>/******
+ Verify if is all digits between ":" */if (t != s+1+strspn(s+1, "0123456789"))
+   <<No gcc error found here, but it might terminate the scanning of a previous
+ one>>@
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 <<No gcc error found here, but it might terminate the scanning of a previous
  one>>=
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   err_line = 0;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   discharge_buffer(1);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   continue;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
@@ -1178,108 +1465,144 @@ last line
  In those cases we empty the buffer completely.
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 <<Function bodies>>=
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 void
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 discharge_buffer (int save_last)
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
  if (last_err_line != 0) { 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
    clean_gcc_messages();
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
    if (save_last != 0) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       output_error(last_buf_line-1, last_err_line, "gcc");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       strcpy (buffer[0], buffer[last_buf_line-1]);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       last_err_line = err_line;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       last_buf_line = 1;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     } else { 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       ++last_buf_line;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       clean_gcc_messages();
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       output_error(last_buf_line-1, last_err_line, "gcc");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       last_err_line = 0;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       last_buf_line = 0;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     }
 \end_layout
 
-\begin_layout Scrap
-  }
-\end_layout
+\begin_layout Plain Layout
+
+  }
+\end_layout
+
+\begin_layout Plain Layout
+
+}
+\end_layout
+
+\end_inset
+
+
+\end_layout
+
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
 
-\begin_layout Scrap
-}
-\end_layout
+\begin_inset Argument 1
+status open
 
-\begin_layout Scrap
-@
+\begin_layout Plain Layout
+Function prototypes
 \end_layout
 
-\begin_layout Scrap
-<<Function prototypes>>=
-\end_layout
+\end_inset
 
-\begin_layout Scrap
 void discharge_buffer (int save_last);
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
@@ -1307,120 +1630,165 @@ More could be done.
 
 \end_layout
 
-\begin_layout Scrap
-<<Function bodies>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Function bodies
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 void
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 clean_gcc_messages ()
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   int index;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   char search [30]; 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   char *tail, *head; 
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   int search_len = sprintf(search, ".nw:%d:", last_err_line);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   for (index = 0; index < last_buf_line-1; index++) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     tail = (char *)strstr (buffer[index], search);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     if ( tail == NULL) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
        tail = (char *) strstr (buffer[index], ".nw:");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
        if (tail) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
           tail += 4;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
        }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     } else {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
        tail += search_len;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     if (tail != NULL) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
        head = buffer[index];
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
        while (*(head++) = *(tail++));
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
-\begin_layout Scrap
-<<Function prototypes>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Function prototypes
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 void clean_gcc_messages ();
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
@@ -1429,50 +1797,70 @@ To combine the scan of noweb error messages and xlc error messages is very
  We just try each one for every input line:
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Standard
+\begin_inset ERT
+status open
+
+\begin_layout Plain Layout
+
 <<AIX system using both noweb and xlc>>=
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   last_buf_line = 0;
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
   while (fgets(buffer[0], 200, stdin)) {
-\begin_inset Newline newline
-\end_inset
+\end_layout
 
-    if (noweb_try(0))
-\begin_inset Newline newline
-\end_inset
+\begin_layout Plain Layout
 
-      output_error(1, err_line, "noweb");
-\begin_inset Newline newline
-\end_inset
+   if (noweb_try(0))
+\end_layout
 
-    else if (xlc_try(0))
-\begin_inset Newline newline
-\end_inset
+\begin_layout Plain Layout
 
-      output_error(1, err_line, "xlc");
-\begin_inset Newline newline
-\end_inset
+     output_error(1, err_line, "noweb");
+\end_layout
 
-  }
-\begin_inset Newline newline
-\end_inset
+\begin_layout Plain Layout
+
+   else if (xlc_try(0))
+\end_layout
+
+\begin_layout Plain Layout
+
+     output_error(1, err_line, "xlc");
+\end_layout
+
+\begin_layout Plain Layout
+
+ }
+\end_layout
+
+\begin_layout Plain Layout
 
 }
-\begin_inset Newline newline
-\end_inset
+\end_layout
+
+\begin_layout Plain Layout
 
 @
 \end_layout
 
+\end_inset
+
+
+\end_layout
+
 \begin_layout Standard
 To combine the scan of noweb error messages and gcc error messages is simple
  if we realize that it is not possible to find a noweb error message in
@@ -1481,166 +1869,221 @@ To combine the scan of noweb error messages and gcc error messages is simple
  the beginning of the scan:
 \end_layout
 
-\begin_layout Scrap
-<<Solaris and Linux systems using both noweb and gcc>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+Solaris and Linux systems using both noweb and gcc
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   char    *s, *t;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
  
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   last_buf_line = 0;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   while (fgets(buffer[last_buf_line], 200, stdin)) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     /****** Skip lines until I find an error */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     if (last_buf_line == 0 && noweb_try(0)) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       output_error(1, err_line, "noweb");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       continue;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     s = (char *)strpbrk(buffer[last_buf_line], " :");
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     if (s == NULL || *s == ' ')
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       continue; /* No gcc error found here */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     do {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       <<gcc error message criteria is to find a "...:999:" or a "...: ">>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       /****** OK It is an error, get line number */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       err_line = atoi(s+1);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       if (last_err_line == 0 || last_err_line == err_line) {
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
         last_err_line = err_line;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
         continue; /* It's either a header or a continuation, don't output
  yet */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       /****** Completed the scan of one error message, output it to LyX
  */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       discharge_buffer(1);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
       break;
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
     } while (fgets(buffer[last_buf_line], 200, stdin));
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   }
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   /****** EOF completes the scan of whatever was being scanned */
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
   discharge_buffer(0);
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 }
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Section
 Wrapping the code into a file
 \end_layout
 
-\begin_layout Scrap
-<<listerrors.c>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+listerrors.c
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 #include <stdio.h>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 #include <strings.h>       
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
  
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 <<Global variables>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 <<Function prototypes>>
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 <<Function bodies>>
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
@@ -1672,42 +2115,58 @@ listerrors.c
  option to gcc.
 \end_layout
 
-\begin_layout Scrap
-<<build-script>>=
+\begin_layout Standard
+\begin_inset Flex Chunk
+status open
+
+\begin_layout Plain Layout
+
+\begin_inset Argument 1
+status open
+
+\begin_layout Plain Layout
+build-script
 \end_layout
 
-\begin_layout Scrap
+\end_inset
+
 #!/bin/sh
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 if [ -z "$NOWEB_SOURCE" ]; then NOWEB_SOURCE=Literate.nw; fi
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 if [ -z "$NOWEB_OUTPUT_DIR" ]; then NOWEB_OUTPUT_DIR=.; fi
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 notangle -L -Rlisterrors.c ${NOWEB_SOURCE} > ${NOWEB_OUTPUT_DIR}/listerrors.c
 \end_layout
 
-\begin_layout Scrap
+\begin_layout Plain Layout
+
 gcc -g -o listerrors listerrors.c
 \end_layout
 
-\begin_layout Scrap
-@
+\end_inset
+
+
 \end_layout
 
 \begin_layout Standard
-This project can be tangled and compiled from LyX if you set 
+This project can be tangled and compiled from \SpecialChar LyX
+ if you set 
 \family typewriter
 
 \backslash
 build_command
 \family default
- to call a generic script that always extracts a scrap named 
+ to call a generic script that always extracts a chunk named 
 \family typewriter
 build-script
 \family default