summaryrefslogtreecommitdiff
path: root/elisp
diff options
context:
space:
mode:
authorDavid Kastrup <dak@gnu.org>2014-12-29 18:57:47 +0100
committerDavid Kastrup <dak@gnu.org>2015-01-05 19:50:14 +0100
commita9866cda4bfaa7c12a118131ed94e837f0f3a536 (patch)
treea30392f8c81ba4f553a03b65f09918467d9357f2 /elisp
parent771722dc109f9da48f08d14bcde9c154be629aec (diff)
Issue 4237: lilypond-what-beat.el: make "No | before point" a message rather than an error
Diffstat (limited to 'elisp')
-rw-r--r--elisp/lilypond-what-beat.el2
1 files changed, 1 insertions, 1 deletions
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)