Skip to content

Commit

Permalink
Use default-value for full-frame in helm-resume.
Browse files Browse the repository at this point in the history
* helm.el (helm-resume): Do it.
  • Loading branch information
Thierry Volpiatto committed Jun 22, 2016
1 parent 416023f commit 0d694a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion helm.el
Original file line number Diff line number Diff line change
Expand Up @@ -1963,7 +1963,9 @@ Call with a prefix arg to choose among existing helm
buffers (sessions). When calling from lisp, specify a buffer-name
as a string with ARG."
(interactive "P")
(let (any-buffer cur-dir (helm-full-frame helm-full-frame))
(let (any-buffer
cur-dir
(helm-full-frame (default-value 'helm-full-frame)))
(if arg
(if (and (stringp arg) (bufferp (get-buffer arg)))
(setq any-buffer arg)
Expand Down

0 comments on commit 0d694a8

Please sign in to comment.