From deb5bee03c4c113cdef0361e158557f807ee5359 Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 27 Mar 2002 00:56:30 +0000 Subject: [PATCH] lilypond-1.3.133 --- Documentation/topdocs/FAQ.texi | 14 +++++++++----- debian/changelog | 10 ++++++++++ debian/emacsen-startup | 2 +- lily/break-align-item.cc | 5 +++++ lily/parser.yy | 2 +- 5 files changed, 26 insertions(+), 7 deletions(-) diff --git a/Documentation/topdocs/FAQ.texi b/Documentation/topdocs/FAQ.texi index 080ee097ed..1f7d909a99 100644 --- a/Documentation/topdocs/FAQ.texi +++ b/Documentation/topdocs/FAQ.texi @@ -62,15 +62,19 @@ yourself: Yes. It is included with the source archive as @file{lilypond-mode.el} and @file{lilypond-font-lock.el}. If you have -an RPM or .deb it is in @file{/usr/share/doc/lilypond-X/}. You have -to install it yourself. +an RPM, it is in @file{/usr/share/doc/lilypond-X/}. You have to install +it yourself. -Add this to your .emacs.el: +Add this to your ~/.emacs or ~/.emacs.el: @example (load-library "lilypond-mode.el") (setq auto-mode-alist - (append '(("\\.ly$" . LilyPond-mode) auto-mode-alist))) -@end example + (cons '("\\.ly$" . LilyPond-mode) auto-mode-alist)) + (add-hook 'LilyPond-mode-hook (lambda () (turn-on-font-lock))) +@end example + +If you have the latest LilyPond-1.3.x Debian package, LilyPond-mode +is automatically loaded, so you need not modify your ~/.emacs file. @subsection I downloaded the windows32 port, and it doesn't match the website! diff --git a/debian/changelog b/debian/changelog index 215774e68d..ff69e33e53 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +lilypond1.3 (1.3.132-1) unstable; urgency=medium + + * New upstream version. + * Oops, in 1.3.129-1, the "(setq auto-mode-alist (append ..." line in + /etc/emacs/site-start.d/50lilypond1.3.el (debian/emacsen-startup) + and in FAQ.txt was buggy. Thanks to Erik Demaine for the bug report. + Closes: Bug#86685. + + -- Anthony Fok Sun, 25 Feb 2001 20:27:09 -0700 + lilypond1.3 (1.3.129-1) unstable; urgency=low * In memory of Werner Icking + (August 26, 1943 - February 8, 2001), diff --git a/debian/emacsen-startup b/debian/emacsen-startup index 0ce6460c08..379d566663 100644 --- a/debian/emacsen-startup +++ b/debian/emacsen-startup @@ -1,3 +1,3 @@ (autoload 'LilyPond-mode "lilypond-mode" nil t) -(setq auto-mode-alist (append '(("\\.ly$" . LilyPond-mode) auto-mode-alist))) +(setq auto-mode-alist (cons '("\\.ly$" . LilyPond-mode) auto-mode-alist)) (add-hook 'LilyPond-mode-hook (lambda () (turn-on-font-lock))) diff --git a/lily/break-align-item.cc b/lily/break-align-item.cc index 4318f0b78d..74dab15ca4 100644 --- a/lily/break-align-item.cc +++ b/lily/break-align-item.cc @@ -170,6 +170,11 @@ Break_align_interface::do_alignment (Grob *me) scm_set_car_x (first_pair, gh_double2scm (-dists[0])); elems[0]->set_grob_property ("minimum-space", first_pair); + Direction bsd = item->break_status_dir(); + if (bsd == LEFT) + { + me->set_grob_property ("self-alignment-X", gh_int2scm (RIGHT)); + } /* Force callbacks for alignment to be called diff --git a/lily/parser.yy b/lily/parser.yy index cad76eb68d..32dc7fc492 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -659,7 +659,7 @@ Alternative_music: Repeated_music: - REPEAT STRING bare_unsigned Music Alternative_music + REPEAT string bare_unsigned Music Alternative_music { Music_sequence* alts = dynamic_cast ($5); if (alts && $3 < alts->length_i ()) -- 2.39.5