From 119aef1b08fc8fd561b05ea1bcd81e8dba806a91 Mon Sep 17 00:00:00 2001 From: Milan Zamazal Date: Tue, 5 Jul 2022 13:30:30 +0200 Subject: [PATCH] Move Code: labels before the beginning of code From the places where they were inserted by checkdoc. --- pw-access.el | 4 ++-- pw-lib.el | 4 ++-- pw-ui.el | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pw-access.el b/pw-access.el index ea9e95a..67b1b35 100644 --- a/pw-access.el +++ b/pw-access.el @@ -37,10 +37,10 @@ ;; outside this module, except for using a different communication ;; class. -(require 'eieio) - ;;; Code: +(require 'eieio) + (defclass pw-accessor () () :documentation diff --git a/pw-lib.el b/pw-lib.el index a431aeb..9c42877 100644 --- a/pw-lib.el +++ b/pw-lib.el @@ -32,11 +32,11 @@ ;; pw-lib caches data retrieved from PipeWire and uses the cached ;; data. If The cache can be invalidated by calling `pw-lib-refresh'. +;;; Code: + (require 'cl-lib) (require 'pw-access) -;;; Code: - (defvar pw-lib--accessor (pw-cli-accessor)) (defvar pw-lib--objects '()) diff --git a/pw-ui.el b/pw-ui.el index 0dbad77..1cb46eb 100644 --- a/pw-ui.el +++ b/pw-ui.el @@ -31,10 +31,10 @@ ;; `pipewire-toggle-muted' functions are also suitable to bind on the ;; multimedia keys. -(require 'pw-lib) - ;;; Code: +(require 'pw-lib) + (defgroup pipewire () "PipeWire user interface." :group 'multimedia)