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:
parent
951d117a47
commit
76e18b30e9
@ -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
|
||||
|
@ -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)))
|
||||
|
Loading…
Reference in New Issue
Block a user