From: David Kastrup Date: Mon, 29 Dec 2014 17:57:47 +0000 (+0100) Subject: Issue 4237: lilypond-what-beat.el: make "No | before point" a message rather than... X-Git-Tag: release/2.19.16-1~2^2~38^2~28 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a9866cda4bfaa7c12a118131ed94e837f0f3a536;p=lilypond.git Issue 4237: lilypond-what-beat.el: make "No | before point" a message rather than an error --- diff --git a/elisp/lilypond-what-beat.el b/elisp/lilypond-what-beat.el index 4a00ed36c3..dae02d53d2 100644 --- a/elisp/lilypond-what-beat.el +++ b/elisp/lilypond-what-beat.el @@ -201,7 +201,7 @@ If next note has no duration, returns t" (duration (if (= -1 last-dur) 0 (parse-duration (match-string 0)))) (result '(0 1))) ; 0 in fraction form (if (= measure-start -1) - (error "No | before point") + (message "No | before point") (progn (goto-char (1+ measure-start)) (goto-note-begin)