Move Code: labels before the beginning of code

From the places where they were inserted by checkdoc.
This commit is contained in:
Milan Zamazal 2022-07-05 13:30:30 +02:00
parent 91888abb91
commit 119aef1b08
3 changed files with 6 additions and 6 deletions

View File

@ -37,10 +37,10 @@
;; outside this module, except for using a different communication
;; class.
(require 'eieio)
;;; Code:
(require 'eieio)
(defclass pw-accessor ()
()
:documentation

View File

@ -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 '())

View File

@ -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)