+2008-02-29 Juanma Barranquero <lekktu@gmail.com>
+
+ * desktop.el (desktop-save): Save the buffer name if the
+ uniquified base name is empty.
+
2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
* diff-mode.el (diff-sanity-check-hunk): Only accept an empty line if
2008-02-28 Juri Linkov <juri@jurta.org>
* startup.el (normal-splash-screen): Add argument `concise'.
- Remove unused binding `prev-buffer'. Let-bind `splash-buffer'
+ Remove unused binding `prev-buffer'. Let-bind `splash-buffer'
to the created buffer. If `concise' is non-nil, call
`display-buffer', otherwise `switch-to-buffer'. Doc fix.
(display-startup-screen): Add argument `concise' to the call to
"desktop-append-buffer-args")
" "
desktop-file-version)
- ;; If the base name is non-nil, we save it instead of the buffer name
- (when base (setcar (nthcdr 1 l) base))
+ ;; If there's a non-empty base name, we save it instead of the buffer name
+ (when (and base (not (string= base "")))
+ (setcar (nthcdr 1 l) base))
(dolist (e l)
(insert "\n " (desktop-value-to-string e)))
(insert ")\n\n"))))