diff options
author | Edward M. Reingold <reingold@emr.cs.iit.edu> | 1997-12-05 17:22:31 +0000 |
---|---|---|
committer | Edward M. Reingold <reingold@emr.cs.iit.edu> | 1997-12-05 17:22:31 +0000 |
commit | c51bbf1b355e2dceca5e01a1192d0f752a8db861 (patch) | |
tree | e2a90c6737edef40058d084c0adeab7387d7c2ac /lisp/calendar | |
parent | 95db0d0eb1e103951c768df2dc82e759f0c51154 (diff) | |
download | emacs-c51bbf1b355e2dceca5e01a1192d0f752a8db861.tar.gz |
Fix bad call to error.
Diffstat (limited to 'lisp/calendar')
-rw-r--r-- | lisp/calendar/calendar.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index 43f878d752b..0713482bfd7 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el @@ -2093,7 +2093,7 @@ the STRINGS are just concatenated and the result truncated." (not (yes-or-no-p "Diary modified; do you really want to exit the calendar? "))) - (error) + (beep) ;; Need to do this multiple times because one time can replace some ;; calendar-related buffers with other calendar-related buffers (mapcar (lambda (x) |