ci: make tests happy
CI / build (26.3) (push) Successful in 1m55s Details
CI / build (27.2) (push) Successful in 2m11s Details
CI / build (28.2) (push) Successful in 1m53s Details
CI / build (29.1) (push) Successful in 1m44s Details
CI / build (snapshot) (push) Successful in 1m34s Details

This commit is contained in:
Lucien Cartier-Tilet 2024-02-08 05:16:36 +01:00
parent 9b0a96a894
commit 4a22d8f7c0
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
2 changed files with 7 additions and 5 deletions

4
Eask
View File

@ -1,6 +1,6 @@
(package "password-gen"
"0.1.0"
"Password generator for Emacs")
"Simple password generator")
(website-url "https://labs.phundrak.com/phundrak/password-gen.el")
(keywords "convenience")
@ -12,3 +12,5 @@
(source "gnu")
(depends-on "emacs" "26.1")
(depends-on "transient" "0.5.3")

View File

@ -1,4 +1,4 @@
;;; password-gen.el --- Password generator for Emacs -*- lexical-binding: t; -*-
;;; password-gen.el --- Simple password generator -*- lexical-binding: t; -*-
;; Copyright (C) 2024 Lucien Cartier-Tilet
@ -26,7 +26,7 @@
;;; Commentary:
;;
;; Password generator for Emacs, based on transient.
;; Simple password generator, based on transient.
;;
;;; Code:
@ -37,7 +37,7 @@
(defconst password-gen-version "0.1.0")
(defgroup password-gen ()
"Password generator for Emacs"
"Password generator for Emacs."
:group 'applications
:prefix "password-gen-"
:link '(url-link :tag "Gitea" "https://labs.phundrak.com/phundrak/password-gen.el"))
@ -165,7 +165,7 @@ This function is meant to be called by a transient.")
;;;###autoload
(defun password-gen ()
"Call the main transient for password-gen."
"Call the main transient."
(interactive)
(call-interactively #'password-gen-main))