diff --git a/helm-frame.el b/helm-frame.el index 5d2e03d..3b07d1c 100644 --- a/helm-frame.el +++ b/helm-frame.el @@ -81,7 +81,6 @@ If FRAME is provided, then get display that frame is on." (if frame frame nil))) -;;;###autoload (defun helm-frame/create () "Create a new helm-frame." (let @@ -93,7 +92,6 @@ If FRAME is provided, then get display that frame is on." (lower-frame frame) (select-frame-set-input-focus old-frame) frame)) -;;;###autoload (defun helm-frame/frame () "Return the current frame, or create a new one." (let ((frame (or (helm-frame--frame-named "Helm") (helm-frame/create)))) @@ -102,14 +100,12 @@ If FRAME is provided, then get display that frame is on." (helm-frame--center-frame frame) frame)) -;;;###autoload (defun helm-frame/window (window) "Return helm-frame's window. Takes WINDOW for compatability with 'helm-split-window-preferred-function'." (frame-root-window (helm-frame/frame))) -;;;###autoload (defun helm-frame/delete () "Throw the frame down a very deep well." (delete-frame (helm-frame/frame)))