]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-1.3.117
authorfred <fred>
Wed, 27 Mar 2002 00:34:41 +0000 (00:34 +0000)
committerfred <fred>
Wed, 27 Mar 2002 00:34:41 +0000 (00:34 +0000)
Documentation/user/refman.itely
lily/global-translator.cc
lily/grace-engraver-group.cc
lily/grace-performer-group.cc
lily/include/global-translator.hh
lily/include/grace-engraver-group.hh
lily/include/grace-performer-group.hh
lily/include/score-engraver.hh
lily/include/score-performer.hh
lily/score-engraver.cc
lily/score-performer.cc

index 90e9e53e42441d1174090dbc90c6e4ac77602e1f..381fb4f452ad797f8bb109b47d5508d1c37f79cf 100644 (file)
@@ -143,6 +143,8 @@ forbidden after top level assignments.
 
 
 
+@unnumberedsubsec Comments
+
 @cindex comment
 
 @indexcode{%}
@@ -152,6 +154,8 @@ A one line comment is introduced by a `@code{%}' character.
 Block comments are started by `@code{%@{}' and ended by `@code{%@}}'. 
 They cannot be nested.
 
+@unnumberedsubsec Scheme
+
 @indexcode{#}
 
 LilyPond contains a Scheme interpreter (the GUILE library) for
@@ -173,6 +177,8 @@ the result is discarded. Example:
 
 [refer appendix/ online intro on Scheme] 
 
+@unnumberedsubsec Keywords
+
 @cindex keyword
 
 Keywords start with a backslash, followed by a number of lower case
@@ -191,12 +197,16 @@ script stylesheet skip textscript tempo translator
 transpose type
 @end example
 
+@unnumberedsubsec Integers
+
 @cindex integer
 
 Formed from an optional minus sign followed by digits.  Arithmetic
 operations cannot be done with integers, and integers cannot be mixed
 with reals.
 
+@unnumberedsubsec Reals
+
 @cindex real
  
 
@@ -216,10 +226,9 @@ centimeters, respectively.  This converts the number to a real that
 is the internal representation of dimensions.
 
 
-
+@unnumberedsubsec
 @cindex string
  
-
 Begins and ends with the `@code{"}' character.  To include a `@code{"}'
 character in a string write `@code{\"}'.  Various other backslash
 sequences have special interpretations as in the C language.  A string
@@ -228,7 +237,6 @@ that contains no spaces can be written without the quotes.  See
 depending on the situation.  Strings can be concatenated with the
 `@code{+}' operator.
 
-
 The tokenizer accepts the following commands. They have no grammatical
 function, hence they can appear anywhere in the input.
 
@@ -239,6 +247,8 @@ function, hence they can appear anywhere in the input.
 This command is used in init files to signal that the user file must
 be read. This command cannot be used in a user file.
 
+@unnumberedsubsec file inclusion
+
 @example
   \include@keyindex{include} @var{file}
 @end example
@@ -247,6 +257,8 @@ Include @var{file}.  The argument @var{file} may be a quoted string (an
 unquoted string will not work here!) or a string identifier.  The full
 filename including the @file{.ly} extension must be given,
 
+@unnumberedsubsec Version information 
+
 @example
   \version@keyindex{version} @var{string} ;
 @end example
index eeb86e177e58bee44e325e4339d9723682ebd677..61b724d40dc4214d1595ad3273ffed130921a4d0 100644 (file)
@@ -68,7 +68,7 @@ Global_translator::get_output_p()
 }
 
 void
-Global_translator::process ()
+Global_translator::one_time_step ()
 {
 }
 void
@@ -97,6 +97,6 @@ Global_translator::run_iterator_on_me (Music_iterator * iter)
       prepare (w);
       iter->process (w);
       
-      process ();
+      one_time_step ();
     }
 }
index 0f484ae35a03545303da8f455f588fc92e391524..e02d09be25eba2efd2d32cd997d79905ded512ac 100644 (file)
@@ -66,10 +66,10 @@ Grace_engraver_group::Grace_engraver_group()
 }
 
 void
-Grace_engraver_group::process ()
+Grace_engraver_group::one_time_step ()
 {
   calling_self_b_  = true;
-  //process_music ();
+  process_music ();
   announces();
   pre_move_processing();
   check_removal();
index e1fc4503a8c4359f27b40d5395f286811233d985..f7d292956179daf152c452b1902a5e547e816c2b 100644 (file)
@@ -68,10 +68,10 @@ Grace_performer_group::Grace_performer_group()
 }
 
 void
-Grace_performer_group::process ()
+Grace_performer_group::one_time_step ()
 {
   calling_self_b_  = true;
-  //process_music ();
+  // process_music ();
   announces();
   pre_move_processing();
   check_removal();
index 34e99211429c1bf18f3585c13afdeb848c9aa7a7..1afb8483d171a4bf17c274be020ef235069e9e7d 100644 (file)
@@ -31,7 +31,7 @@ public:
   
   virtual Music_output *get_output_p ();     
   virtual void prepare (Moment);
-  virtual void process();
+  virtual void one_time_step ();
   virtual void finish();
   virtual void start();
 
index dfc0eb2ceb97849cf127d16c5d24f00161945daf..2a47925d340744d5bee1fdf93b0b8da4c093500c 100644 (file)
@@ -27,7 +27,7 @@ protected:
   virtual void announce_grob (Grob_info);
   virtual void start ();
   virtual void finish ();
-  virtual void process ();
+  virtual void one_time_step ();
   virtual void each (Method_pointer);
   virtual void finalize () ;
   virtual void typeset_grob (Grob*);
index be96df4ce1e749c9378675e2b8e44391c643a2d7..5d4b3400e1b3ba517df2e85e1a5b0a550b6c3894 100644 (file)
@@ -25,7 +25,7 @@ protected:
   virtual void announce_element (Audio_element_info);
   virtual void start ();
   virtual void finish ();
-  virtual void process ();
+  virtual void one_time_step ();
   virtual void each (Method_pointer);
   virtual void finalize () ;
   virtual void play_element (Audio_element*);
index 56618c79347451d11ecc7202e2a7cce3772f3e23..faeecc91277aca0774d1af291efac08f81a81874 100644 (file)
@@ -40,7 +40,7 @@ public:
 protected:   
   virtual void prepare (Moment);
   virtual void finish();
-  virtual void process();
+  virtual void one_time_step();
   virtual int depth_i() const { return Global_translator::depth_i ();}
 
 protected:
index 3abe6f1d99a0d77b23190a18c26f748166c533c8..b5999c53f69daaeed6308b895f061cecb859ea58 100644 (file)
@@ -27,7 +27,7 @@ public:
 protected:
   virtual void finish();
   virtual void prepare (Moment mom);
-  virtual void process();
+  virtual void one_time_step();
   virtual void start();
   virtual void initialize ();
   virtual void announce_element (Audio_element_info);
index 9faf178ff691cc232ac04bebef6bbe93910d878f..71501fed7b6bc6534b2a66b2a9d35462b22580fd 100644 (file)
@@ -113,7 +113,7 @@ Score_engraver::finalize()
 }
 
 void
-Score_engraver::process()
+Score_engraver::one_time_step()
 {
   process_music();
   announces();
index 317bc3ac9dbaadc7d218e04a736e2dda4d609485..9c9d01e20ef4ac00946477841eba2ff30bd63534 100644 (file)
@@ -65,9 +65,10 @@ Score_performer::prepare (Moment m)
 
 
 void 
-Score_performer::process()
+Score_performer::one_time_step ()
 {
-  //process_music();
+  // fixme: put this back.
+  // process_music();
   announces ();
   pre_move_processing();
   check_removal();