This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
+2005-04-10 Karl Fogel <kfogel@red-bean.com>
+
+ * bookmark.el (bookmark-write-file): Catch errors writing file.
+ This is the same change as saveplace.el at 2005-04-10T23:32:00Z!rms@gnu.org.
+
2005-04-10 Richard M. Stallman <rms@gnu.org>
* startup.el (fancy-splash-tail): Update copyright year.
((eq 'nospecial bookmark-version-control) version-control)
(t
t))))
- (write-file file)
+ (condition-case nil
+ (write-file file)
+ (file-error (message "Can't write %s" file)))
(kill-buffer (current-buffer))
(if (>= baud-rate 9600)
(message "Saving bookmarks to file %s...done" file)))))))