mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 12:57:34 +00:00
(tumme-track-original-file): Add `buffer-live-p' check.
(tumme-format-properties-string): Handle empty `buf'.
This commit is contained in:
parent
50e93433f7
commit
f2151145f5
1 changed files with 2 additions and 2 deletions
|
|
@ -1009,7 +1009,7 @@ use only useful if `tumme-track-movement' is nil."
|
|||
(let ((old-buf (current-buffer))
|
||||
(dired-buf (tumme-associated-dired-buffer))
|
||||
(file-name (tumme-original-file-name)))
|
||||
(when (and dired-buf file-name)
|
||||
(when (and (buffer-live-p dired-buf) file-name)
|
||||
(setq file-name (file-name-nondirectory file-name))
|
||||
(set-buffer dired-buf)
|
||||
(goto-char (point-min))
|
||||
|
|
@ -1134,7 +1134,7 @@ comment."
|
|||
(format-spec
|
||||
tumme-display-properties-format
|
||||
(list
|
||||
(cons ?b buf)
|
||||
(cons ?b (or buf ""))
|
||||
(cons ?f file)
|
||||
(cons ?t (or (princ props) ""))
|
||||
(cons ?c (or comment "")))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue