1
0
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-11-26 07:33:39 +00:00

Remember: Fix bug cause by expand-file-name on nil file.

This commit is contained in:
Carsten Dominik 2008-12-23 06:15:04 +01:00
parent 951d117a47
commit 76e18b30e9
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-12-23 Carsten Dominik <carsten.dominik@gmail.com>
* org.el (org-refile-get-location): Handle case of current buffer
not having a file associated with it.
2008-12-22 Carsten Dominik <carsten.dominik@gmail.com>
* org-table.el (org-table-get-formula): Only ask to overwrite

View File

@ -7671,13 +7671,13 @@ operation has put the subtree."
(unless org-refile-target-table
(error "No refile targets"))
(let* ((cbuf (current-buffer))
(cfn (buffer-file-name (buffer-base-buffer cbuf)))
(cfunc (if (and org-refile-use-outline-path
org-outline-path-complete-in-steps)
'org-olpath-completing-read
'org-ido-completing-read))
(extra (if org-refile-use-outline-path "/" ""))
(filename (expand-file-name
(buffer-file-name (buffer-base-buffer cbuf))))
(filename (and cfn (expand-file-name cfn)))
(tbl (mapcar
(lambda (x)
(if (not (equal filename (nth 1 x)))