From 23721d0a5593df960fe957f7366e9f930f00b276 Mon Sep 17 00:00:00 2001 From: Milan Zamazal Date: Mon, 4 Jul 2022 18:59:25 +0200 Subject: [PATCH] Add some useless stuff to make checkdoc happier --- pip-frame.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pip-frame.el b/pip-frame.el index fb04ea5..b2f14f4 100644 --- a/pip-frame.el +++ b/pip-frame.el @@ -35,6 +35,8 @@ (require 'cl-lib) +;;; Code: + (defgroup pip-frame () "Display PIP frame." :group 'frames) @@ -194,18 +196,22 @@ If the buffer is not present in the PIP frame, do nothing." (round (* pip-frame-move-step (nth (if vertical 3 2) workarea)))))) (defun pip-frame-move-left () + "Move the PIP frame left." (interactive) (pip-frame--move (- (pip-frame--move-step nil)) 0)) (defun pip-frame-move-right () + "Move the PIP frame right." (interactive) (pip-frame--move (pip-frame--move-step nil) 0)) (defun pip-frame-move-up () + "Move the PIP frame up." (interactive) (pip-frame--move 0 (- (pip-frame--move-step t)))) (defun pip-frame-move-down () + "Move the PIP frame down." (interactive) (pip-frame--move 0 (pip-frame--move-step t)))