From 957232314a2bb7b4ea867f6f8078700f6a546497 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Fri, 24 Mar 2023 19:21:24 +0100 Subject: [PATCH] Avoid usage of 'defsubst' where unnecessary --- autocrypt.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autocrypt.el b/autocrypt.el index 725eae0..fbc0d6f 100644 --- a/autocrypt.el +++ b/autocrypt.el @@ -127,7 +127,7 @@ This function must accept one argument, a symbol designating the command (`install', `get-header', ...) and returns a function with the right signature.") -(defsubst autocrypt-find-function (command silent) +(defun autocrypt-find-function (command silent) "Return a function for handling COMMAND. If SILENT is non-nil, return nil when no implementation could be found." @@ -221,7 +221,7 @@ the buffer it is being invoked in. See `autocrypt-backends' and ;;;; Internal Functions ;; https://autocrypt.org/level1.html#e-mail-address-canonicalization -(defsubst autocrypt-canonicalise (addr) +(defun autocrypt-canonicalise (addr) "Return a canonical form of email address ADDR." ;; "[...] Other canonicalization efforts are considered for later ;; specification versions." -- 2.45.2