]> git.donarmstrong.com Git - lilypond.git/commitdiff
document ly:set-option.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 3 Apr 2005 20:29:46 +0000 (20:29 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 3 Apr 2005 20:29:46 +0000 (20:29 +0000)
ChangeLog
Documentation/user/point-and-click.itely
lily/main.cc

index 8850cce4526fe09ab482cbb61160fccd48cece28..baf8e289df3d085c52760785c6723fa931a4c101 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-04-03  Han-Wen Nienhuys  <hanwen@xs4all.nl>
+
+       * Documentation/user/point-and-click.itely: document ly:set-option.
+
+       * lily/grob.cc (get_uncached_stencil): only ste grob-cause if
+       point_and_click_global is set.
+
+       * lily/scm-option.cc (LY_DEFINE): add point-and-click
+       ly:set-option argument.
+
 2005-04-03  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * GNUmakefile.in: Include symlinks in webball.
index 0e81969711136233111868cdc587ea8b1020b8fc..5db84e7c7cad4c750016d0f6c089ed7881afa163 100644 (file)
@@ -3,11 +3,6 @@
 @cindex point and click
 
 
-
-
-@cindex source specials
-@cindex specials, source
-
 Point and click lets you find notes in the input by clicking on them
 in the PDF viewer.  This makes it easier to find input that causes
 some error in the sheet music.
@@ -83,3 +78,16 @@ emacsclient --no-wait +%(line)s:%(column)s %(file)s
 for @code{LYEDITOR} is equivalent to the standard emacsclient
 invocation.
 
+
+@cindex file size, output
+
+The point and click links enlarge the output files significantly. For
+reducing the size of PDF and PS files, point and click may be switched
+off by issuing
+
+@example
+  #(ly:set-option 'point-and-click #f)
+@end example
+
+@noindent
+in a @file{.ly} file.
index 351adc8ed32bbcbd5d9ce8c2f06db8ad46807532..80095fa9af97c4c5f790de42dc1c2a5298d823ef 100644 (file)
@@ -61,6 +61,9 @@ String output_name_global;
 /* Run in safe mode? */
 bool be_safe_global = false;
 
+/* Provide URI links to the original file */
+bool point_and_click_global = true;
+
 /* Verbose progress indication? */
 bool be_verbose_global = false;