ci: make tests happy
This commit is contained in:
parent
9b0a96a894
commit
4a22d8f7c0
4
Eask
4
Eask
@ -1,6 +1,6 @@
|
|||||||
(package "password-gen"
|
(package "password-gen"
|
||||||
"0.1.0"
|
"0.1.0"
|
||||||
"Password generator for Emacs")
|
"Simple password generator")
|
||||||
|
|
||||||
(website-url "https://labs.phundrak.com/phundrak/password-gen.el")
|
(website-url "https://labs.phundrak.com/phundrak/password-gen.el")
|
||||||
(keywords "convenience")
|
(keywords "convenience")
|
||||||
@ -12,3 +12,5 @@
|
|||||||
(source "gnu")
|
(source "gnu")
|
||||||
|
|
||||||
(depends-on "emacs" "26.1")
|
(depends-on "emacs" "26.1")
|
||||||
|
|
||||||
|
(depends-on "transient" "0.5.3")
|
||||||
|
@ -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
|
;; Copyright (C) 2024 Lucien Cartier-Tilet
|
||||||
|
|
||||||
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;;
|
;;
|
||||||
;; Password generator for Emacs, based on transient.
|
;; Simple password generator, based on transient.
|
||||||
;;
|
;;
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
@ -37,7 +37,7 @@
|
|||||||
(defconst password-gen-version "0.1.0")
|
(defconst password-gen-version "0.1.0")
|
||||||
|
|
||||||
(defgroup password-gen ()
|
(defgroup password-gen ()
|
||||||
"Password generator for Emacs"
|
"Password generator for Emacs."
|
||||||
:group 'applications
|
:group 'applications
|
||||||
:prefix "password-gen-"
|
:prefix "password-gen-"
|
||||||
:link '(url-link :tag "Gitea" "https://labs.phundrak.com/phundrak/password-gen.el"))
|
: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
|
;;;###autoload
|
||||||
(defun password-gen ()
|
(defun password-gen ()
|
||||||
"Call the main transient for password-gen."
|
"Call the main transient."
|
||||||
(interactive)
|
(interactive)
|
||||||
(call-interactively #'password-gen-main))
|
(call-interactively #'password-gen-main))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user